aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2019-06-09 13:53:11 -0500
committerRob Landley <rob@landley.net>2019-06-09 13:53:11 -0500
commite2551dbf740941572607f6eb50cab2cc23e59548 (patch)
treeb06d971f847e2a451c1ffa3b68f26a142b229d92 /scripts
parent78954416db3032f93317deae1120be9cd7ec9783 (diff)
downloadtoybox-e2551dbf740941572607f6eb50cab2cc23e59548.tar.gz
Inverted test.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/make.sh2
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 &