diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2016-10-18 14:58:13 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-10-18 15:00:20 +0200 |
commit | 07d6e9a73cf87674dc74e9d133d3a98d978830e3 (patch) | |
tree | 36c831c88abc57340546a3516b84e27c5ad074eb | |
parent | 9d51bc382150e50278a82e117a2c592740b79bc6 (diff) | |
download | jenkins.debian.net-07d6e9a73cf87674dc74e9d133d3a98d978830e3.tar.xz |
reproducible/openwrt|lede: openwrt_build_toolchain: enable build_log
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rw-r--r-- | bin/reproducible_openwrt_common.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/reproducible_openwrt_common.sh b/bin/reproducible_openwrt_common.sh index dc17fa04..1e301d20 100644 --- a/bin/reproducible_openwrt_common.sh +++ b/bin/reproducible_openwrt_common.sh @@ -205,8 +205,10 @@ openwrt_build_toolchain() { echo "$(date -u) - Building the toolchain." echo "=============================================================================" - ionice -c 3 make -j $NUM_CPU tools/install - ionice -c 3 make -j $NUM_CPU toolchain/install + OPTIONS="-j $NUM_CPU IGNORE_ERRORS=ym BUILD_LOG=1" + + ionice -c 3 make $OPTIONS tools/install + ionice -c 3 make $OPTIONS toolchain/install } # TYPE - openwrt or lede |