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 16e053c..76d12bf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,7 +10,7 @@
                          (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,, :)