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] [Created] (THRIFT-1102) typo in configure.ac: "==" operator in 'test' (instead of"'=")

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


While:

./configure --with-cpp

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

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

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

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/THRIFT-1102?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13046872#comment-13046872 ] 

Hudson commented on THRIFT-1102:
--------------------------------

Integrated in Thrift #162 (See [https://builds.apache.org/job/Thrift/162/])
    

> 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

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

Posted by "Jake Farrell (JIRA)" <ji...@apache.org>.
     [ 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

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

Posted by "Sergey Skvortsov (JIRA)" <ji...@apache.org>.
     [ 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