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:
38dcb68
)
Thrift-1102: typo in configure.ac: "==" operator in 'test' (instead of "=")
author
Jake Farrell
<jfarrell@apache.org>
Thu, 9 Jun 2011 19:14:22 +0000
(19:14 +0000)
committer
Jake Farrell
<jfarrell@apache.org>
Thu, 9 Jun 2011 19:14:22 +0000
(19:14 +0000)
Fixed incorrect operator check for have_cpp in configure.ac
git-svn-id: https://svn.apache.org/repos/asf/thrift/trunk@
1134046
13f79535
-47bb-0310-9956-
ffa450edef68
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
8668a03
..
f70ace2
100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-109,7
+109,7
@@
AX_THRIFT_LIB(cpp, [C++], yes)
have_cpp=no
if test "$with_cpp" = "yes"; then
AX_BOOST_BASE([1.33.1])
- if test "x$succeeded" =
=
"xyes" ; then
+ if test "x$succeeded" = "xyes" ; then
have_cpp="yes"
fi