You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@thrift.apache.org by "Jake Farrell (JIRA)" <ji...@apache.org> on 2011/06/09 21:15:00 UTC

[jira] [Closed] (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 ]

Jake Farrell closed THRIFT-1102.
--------------------------------

       Resolution: Fixed
    Fix Version/s: 0.7
         Assignee: Jake Farrell

Fixed incorrect operator check for have_cpp in configure.ac

> 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
>            Assignee: Jake Farrell
>             Fix For: 0.7
>
>   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