diff options
author | Rob Landley <rob@landley.net> | 2016-12-08 21:47:15 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-12-08 21:47:15 -0600 |
commit | ddb6b855d3698f72fec04b0734c60001803b608c (patch) | |
tree | 505c1acc95a8fc42ab715faae4fdd8418eb2c207 /scripts | |
parent | 3701b517107fdfb62d13f6ec1ffa60c09ffdfc42 (diff) | |
download | toybox-ddb6b855d3698f72fec04b0734c60001803b608c.tar.gz |
Have make airlock just warn about missing commands unless $PEDANTIC is sent.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install.sh b/scripts/install.sh index 7f344986..2e46b4fb 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -140,7 +140,7 @@ then if [ ! -f "$PREFIX/$i" ] then echo "Toolchain component missing: $i" >&2 - EXIT=1 + [ -z "$PEDANTIC" ] || EXIT=1 fi fi done |