You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@thrift.apache.org by "Sergey Skvortsov (JIRA)" <ji...@apache.org> on 2011/03/20 22:50:06 UTC

[jira] [Updated] (THRIFT-1102) typo in configure.ac: "==" operator in 'test' (instead of"'=")

     [ https://issues.apache.org/jira/browse/THRIFT-1102?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Sergey Skvortsov updated THRIFT-1102:
-------------------------------------

    Description: 
While:

./configure --with-cpp

command "test" returns false because of incorrect operator "==" and as result "cpp" library do not built.

Patch:

--- configure.ac.orig	2011-03-20 21:26:41.000000000 +0000
+++ configure.ac	2011-03-20 21:26:57.000000000 +0000
@@ -85,7 +85,7 @@
 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
 


  was:
While:

./configure --with-cpp

command "test" returns false because of incorrect operator "==" and as result "cpp" library do not built.


> typo in configure.ac: "==" operator in 'test' (instead of"'=")
> --------------------------------------------------------------
>
>                 Key: THRIFT-1102
>                 URL: https://issues.apache.org/jira/browse/THRIFT-1102
>             Project: Thrift
>          Issue Type: Bug
>          Components: Build Process
>    Affects Versions: 0.6
>            Reporter: Sergey Skvortsov
>   Original Estimate: 20m
>  Remaining Estimate: 20m
>
> While:
> ./configure --with-cpp
> command "test" returns false because of incorrect operator "==" and as result "cpp" library do not built.
> Patch:
> --- configure.ac.orig	2011-03-20 21:26:41.000000000 +0000
> +++ configure.ac	2011-03-20 21:26:57.000000000 +0000
> @@ -85,7 +85,7 @@
>  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
>  

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira