diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-12-15 19:10:52 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-12-15 19:10:52 +0100 |
commit | ddcf10d19fbe513785de904436bfe00195a11238 (patch) | |
tree | 9213f72cc9920253670917e2ef2f82d54de3e666 /scripts | |
parent | 91d51a7cd5577579c1d94c0486afe53f0e680260 (diff) |
add message when c/c++ compiler not found
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/prereq.sh | 6 |
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 |