From cdd6f3c029657ca8ac97393f6d76b89b6616b470 Mon Sep 17 00:00:00 2001 From: David Reiss Date: Tue, 4 Mar 2008 21:10:29 +0000 Subject: [PATCH] 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 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,, :) -- 2.17.1