Code Review
/
common
/
thrift.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
b6f18c2
)
Fix a typo in configure.ac.
author
David Reiss
<dreiss@apache.org>
Tue, 4 Mar 2008 21:10:29 +0000
(21:10 +0000)
committer
David 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
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
16e053c
..
76d12bf
100644
(file)
--- 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,, :)