diff options
-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 |