diff options
author | Peter Pentchev <roam@ringlet.net> | 2010-09-12 23:47:55 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-09-12 23:11:47 +0200 |
commit | 5393f08df852df163822bbceae09a0878ca12198 (patch) | |
tree | a36ca82daf4f01e1b11993d549e13fda53f32280 | |
parent | b5da54e6c971c66e3133857f1010b49c564d3a9b (diff) |
Fix a bashism: test a = b is more portable than ==.
-rw-r--r-- | configure.ac | 2 |
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) |