summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure b/configure
index b95f470..363ee37 100755
--- a/configure
+++ b/configure
@@ -56,15 +56,15 @@ has_or_abort() {
where=$(which "${tool}" 2>/dev/null || true)
if [ -z "${where}" ]; then
printf "not found!"
- [ ${FORCE} -eq 0 ] && do_error " bailing out..."
+ [ ${FORCE} -eq 0 ] && do_error " Bailing out..."
echo
else
printf "${where}"
if [ -n "${regexp}" ]; then
str=$(${tool} --version 2>&1 |egrep "${regexp}" |head -n 1)
if [ -z "${str}" ]; then
- printf " failed: '${tool} --version' does not match regexp '${regexp}'"
- [ ${FORCE} -eq 0 ] && do_error " bailing out..."
+ printf " failed: '${tool} --version' does not match regexp '${regexp}'."
+ [ ${FORCE} -eq 0 ] && do_error " Bailing out..."
fi
fi
echo