Use case..esac instead of [[.

Not all /bin/sh have [[ available, so for compatibility using case..esac
for pattern matching is better.
This commit is contained in:
Will Andrews 2015-05-23 13:57:50 -06:00
parent a33b808ac0
commit bc85eb49f5
1 changed files with 6 additions and 4 deletions

10
configure vendored
View File

@ -977,8 +977,8 @@ fi
if [ ! -z "$CFG_ENABLE_CLANG" ]
then
if [ -z "$CC" ] || [[ $CC == *clang ]]
then
case "$CC" in
(''|*clang)
CFG_CLANG_VERSION=$($CFG_CC \
--version \
| grep version \
@ -998,9 +998,11 @@ then
err "bad CLANG version: $CFG_CLANG_VERSION, need >=3.0svn"
;;
esac
else
;;
(*)
msg "skipping CFG_ENABLE_CLANG version check; provided CC=$CC"
fi
;;
esac
fi
if [ ! -z "$CFG_ENABLE_CCACHE" ]