diff options
-rwxr-xr-x | scripts/make.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/make.sh b/scripts/make.sh index c5989334..ea67e121 100755 --- a/scripts/make.sh +++ b/scripts/make.sh @@ -93,5 +93,6 @@ TOYFILES=$(cat .config | sed -nre 's/^CONFIG_(.*)=y/\1/;t skip;b;:skip;s/_.*//;p echo "Compile toybox..." -$DEBUG $CC $CFLAGS -I . -o toybox_unstripped $OPTIMIZE main.c lib/*.c $TOYFILES -$DEBUG $STRIP toybox_unstripped -o toybox +$DEBUG $CC $CFLAGS -I . -o toybox_unstripped $OPTIMIZE \ + main.c lib/*.c $TOYFILES || exit 1 +$DEBUG $STRIP toybox_unstripped -o toybox || exit 1 |