diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-06-12 15:48:49 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-06-12 15:48:49 +0200 |
commit | d00ce9d7e61479b49ed343ac661338bf3adcb4f8 (patch) | |
tree | d7cfbaaa9e00b0e02a23f166e522e52582c2508e | |
parent | 1c819775d37bf9f57a351278273d89cabebf102e (diff) | |
download | jenkins.debian.net-d00ce9d7e61479b49ed343ac661338bf3adcb4f8.tar.xz |
reproducible openwrt: debug make as advised
-rwxr-xr-x | bin/reproducible_openwrt.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh index 7efb53b3..d400d64f 100755 --- a/bin/reproducible_openwrt.sh +++ b/bin/reproducible_openwrt.sh @@ -99,7 +99,7 @@ echo "========================================================================== export TZ="/usr/share/zoneinfo/Etc/GMT+12" # actually build everything nice ionice -c 3 \ - make -j $NUM_CPU target/compile + make -j1 V=s target/compile nice ionice -c 3 \ make -j $NUM_CPU package/cleanup nice ionice -c 3 \ @@ -142,7 +142,7 @@ umask 0002 NEW_NUM_CPU=$(echo $NUM_CPU-1|bc) nice ionice -c 3 \ linux64 --uname-2.6 \ - make -j $NEW_NUM_CPU target/compile + make -j1 V=s target/compile nice ionice -c 3 \ linux64 --uname-2.6 \ make -j $NEW_NUM_CPU package/cleanup |