diff options
author | Rob Landley <rob@landley.net> | 2019-06-09 13:53:11 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-06-09 13:53:11 -0500 |
commit | e2551dbf740941572607f6eb50cab2cc23e59548 (patch) | |
tree | b06d971f847e2a451c1ffa3b68f26a142b229d92 /scripts | |
parent | 78954416db3032f93317deae1120be9cd7ec9783 (diff) | |
download | toybox-e2551dbf740941572607f6eb50cab2cc23e59548.tar.gz |
Inverted test.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/make.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/make.sh b/scripts/make.sh index bd550b91..6649999e 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -297,7 +297,7 @@ do # $LIBFILES doesn't need to be rebuilt if older than .config, $TOYFILES does # ($TOYFILES contents can depend on CONFIG symbols, lib/*.c never should.) - [ "$OUT" -nt "$i" ] && [ -z "$CLICK" -o "$OUT" -ot "$KCONFIG_CONFIG" ] && + [ "$OUT" -nt "$i" ] && [ -z "$CLICK" -o "$OUT" -nt "$KCONFIG_CONFIG" ] && continue do_loudly $BUILD -c $i -o $OUT & |