summaryrefslogtreecommitdiff
path: root/scripts/prereq.sh
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2015-12-15 19:10:52 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2015-12-15 19:10:52 +0100
commitddcf10d19fbe513785de904436bfe00195a11238 (patch)
tree9213f72cc9920253670917e2ef2f82d54de3e666 /scripts/prereq.sh
parent91d51a7cd5577579c1d94c0486afe53f0e680260 (diff)
add message when c/c++ compiler not found
Diffstat (limited to 'scripts/prereq.sh')
-rwxr-xr-xscripts/prereq.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/prereq.sh b/scripts/prereq.sh
index e585c36dc..9b82b2b74 100755
--- a/scripts/prereq.sh
+++ b/scripts/prereq.sh
@@ -115,6 +115,9 @@ for compilerbin in $compilerbins; do
printf "found\n"
CC=$compilerbin
break
+ else
+ printf "not found\n"
+ continue
fi
done
@@ -126,6 +129,9 @@ for compilerbin in $compilerbins; do
printf "found\n"
CXX=$compilerbin
break
+ else
+ printf "not found\n"
+ continue
fi
done