aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2016-12-08 21:47:15 -0600
committerRob Landley <rob@landley.net>2016-12-08 21:47:15 -0600
commitddb6b855d3698f72fec04b0734c60001803b608c (patch)
tree505c1acc95a8fc42ab715faae4fdd8418eb2c207 /scripts
parent3701b517107fdfb62d13f6ec1ffa60c09ffdfc42 (diff)
downloadtoybox-ddb6b855d3698f72fec04b0734c60001803b608c.tar.gz
Have make airlock just warn about missing commands unless $PEDANTIC is sent.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/install.sh2
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