diff options
author | Timo Teräs <timo.teras@iki.fi> | 2013-07-29 14:10:38 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2013-07-29 14:10:38 +0000 |
commit | 21fb14d4e1940caab626277feb38a5e867b1b8a9 (patch) | |
tree | b5be39138d7c1fe6996948215f4525dc399b91bd /abuild.in | |
parent | e150a2515c617f14edad507999ce6f6a582d7a92 (diff) | |
download | abuild-21fb14d4e1940caab626277feb38a5e867b1b8a9.tar.gz abuild-21fb14d4e1940caab626277feb38a5e867b1b8a9.tar.bz2 abuild-21fb14d4e1940caab626277feb38a5e867b1b8a9.tar.xz abuild-21fb14d4e1940caab626277feb38a5e867b1b8a9.zip |
abuild: only update config.sub if needed
its only arm that needs it
Diffstat (limited to 'abuild.in')
-rwxr-xr-x | abuild.in | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -573,16 +573,14 @@ mkusers() { # helper to update config.sub to a recent version update_config_sub() { - local myver=$("$datadir"/config.sub -t | tr -d '-') local changed=false find . -name config.sub | while read f; do - local ver=$(./"$f" -t | tr -d '-') - if [ "$myver" -gt "$ver" ]; then - msg "Updating $f ($myver > $ver)" + if ! ./$f armv6-alpine-linux-muslgnueabihf 2>/dev/null; then + msg "Updating $f" cp "$datadir"/${f##*/} "$f" || return 1 changed=true else - msg "Not updating newer $f" + msg "Not new enough $f" fi # pipe subshell will return status of last command $changed |