aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPeter Pentchev <roam@ringlet.net>2010-09-12 23:47:55 +0300
committerDaniel Stenberg <daniel@haxx.se>2010-09-12 23:11:47 +0200
commit5393f08df852df163822bbceae09a0878ca12198 (patch)
treea36ca82daf4f01e1b11993d549e13fda53f32280 /configure.ac
parentb5da54e6c971c66e3133857f1010b49c564d3a9b (diff)
Fix a bashism: test a = b is more portable than ==.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 76c151efd..ada471814 100644
--- a/configure.ac
+++ b/configure.ac
@@ -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)