summaryrefslogtreecommitdiff
path: root/aclocal
diff options
context:
space:
mode:
authorDavid Reiss <dreiss@apache.org>2009-03-13 21:25:31 +0000
committerDavid Reiss <dreiss@apache.org>2009-03-13 21:25:31 +0000
commit19d3d0a03a05979ec76a29161921e439b74ab244 (patch)
treec34ba424e0d4d3d223f705131624f363bbdff128 /aclocal
parentd9cdf42ec5edce6572265240276bce013d9b3ebc (diff)
downloadthrift-19d3d0a03a05979ec76a29161921e439b74ab244.tar.gz
Fix a test in ax_lib_zlib
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@753429 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'aclocal')
-rw-r--r--aclocal/ax_lib_zlib.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/aclocal/ax_lib_zlib.m4 b/aclocal/ax_lib_zlib.m4
index 40e96df97..64b0b85bb 100644
--- a/aclocal/ax_lib_zlib.m4
+++ b/aclocal/ax_lib_zlib.m4
@@ -111,9 +111,9 @@ AC_DEFUN([AX_LIB_ZLIB],
AC_ARG_WITH([zlib],
AS_HELP_STRING([--with-zlib@<:@=DIR@:>@], [use zlib (default is yes) - it is possible to specify an alternate root directory for zlib]),
[
- if test "$withval" = "xno"; then
+ if test "x$withval" = "xno"; then
want_zlib="no"
- elif test "$withval" = "xyes"; then
+ elif test "x$withval" = "xyes"; then
want_zlib="yes"
ax_zlib_path=""
else