Fix a bashism: test a = b is more portable than ==.

This commit is contained in:
Peter Pentchev 2010-09-12 23:47:55 +03:00 committed by Daniel Stenberg
parent b5da54e6c9
commit 5393f08df8
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ CONFIGURE_OPTIONS="\"$ac_configure_args\""
AC_SUBST(CONFIGURE_OPTIONS)
CURL_CFLAG_EXTRAS=""
if test X"$want_werror" == Xyes; then
if test X"$want_werror" = Xyes; then
CURL_CFLAG_EXTRAS="-Werror"
fi
AC_SUBST(CURL_CFLAG_EXTRAS)