diff options
author | Alexander Couzens <lynxis@fe80.eu> | 2017-06-08 19:04:29 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-06-08 19:07:10 +0200 |
commit | 9064f6e953bd426a26d4a4a13e357d897ac3b841 (patch) | |
tree | b9be77ed9839d7ec260a60b35e46a0e8daee2601 | |
parent | d7134a10b5567c9e5eb11161b4696857c2080bc9 (diff) | |
download | jenkins.debian.net-9064f6e953bd426a26d4a4a13e357d897ac3b841.tar.xz |
reproducible_lede: before download compile tar
On system without `tar --sort=name` we need to compile tar before
downloading everything
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rw-r--r-- | bin/reproducible_lede_common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_lede_common.sh b/bin/reproducible_lede_common.sh index e52ede47..60fbe3db 100644 --- a/bin/reproducible_lede_common.sh +++ b/bin/reproducible_lede_common.sh @@ -254,7 +254,7 @@ openwrt_download() { # configure openwrt because otherwise it wont download everything openwrt_config $CONFIG - while ! make download -j $NUM_CPU IGNORE_ERRORS=ym BUILD_LOG=1 ; do + while ! make tools/tar/compile download -j $NUM_CPU IGNORE_ERRORS=ym BUILD_LOG=1 ; do tries=$((tries - 1)) if [ $tries -eq 0 ] ; then echo "================================================================================" |