From: David Reiss Date: Tue, 4 Mar 2008 21:10:29 +0000 (+0000) Subject: Fix a typo in configure.ac. X-Git-Tag: 0.2.0~922 X-Git-Url: https://source.supwisdom.com/gerrit/gitweb?a=commitdiff_plain;h=cdd6f3c029657ca8ac97393f6d76b89b6616b470;p=common%2Fthrift.git Fix a typo in configure.ac. Used "==" instead of "=" in a test. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665550 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.ac b/configure.ac index 16e053c2..76d12bfb 100644 --- a/configure.ac +++ b/configure.ac @@ -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,, :)