summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_build.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index 61a7a9b5..18d5bc3b 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -120,6 +120,7 @@ echo "The following source packages will be build: ${PACKAGES}"
echo "============================================================================="
echo
+TMPDIR=$(mktemp --tmpdir=. -d)
NUM_CPU=$(cat /proc/cpuinfo |grep ^processor|wc -l)
COUNT_TOTAL=0
COUNT_GOOD=0
@@ -129,6 +130,7 @@ GOOD=""
BAD=""
SOURCELESS=""
SKIPPED=""
+cd $TMPDIR
for SRCPACKAGE in ${PACKAGES} ; do
set +x
echo "============================================================================="
@@ -226,6 +228,8 @@ for SRCPACKAGE in ${PACKAGES} ; do
echo "============================================================================="
set -x
done
+cd ..
+rm -r $TMPDIR
set +x
echo