Fix a typo in configure.ac.
authorDavid Reiss <dreiss@apache.org>
Tue, 4 Mar 2008 21:10:29 +0000 (21:10 +0000)
committerDavid Reiss <dreiss@apache.org>
Tue, 4 Mar 2008 21:10:29 +0000 (21:10 +0000)
Used "==" instead of "=" in a test.

git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665550 13f79535-47bb-0310-9956-ffa450edef68

configure.ac

index 16e053c..76d12bf 100644 (file)
@@ -10,7 +10,7 @@ AC_ARG_VAR([PY_PREFIX], [Prefix for installing Python modules.
                          (Normal --prefix is ignored for Python because
                          Python has different conventions.)
                          Default = "/usr"])
-AS_IF([test "x$PY_PREFIX" == x], [PY_PREFIX="/usr"])
+AS_IF([test "x$PY_PREFIX" = x], [PY_PREFIX="/usr"])
 
 AM_PATH_PYTHON(2.4,, :)