You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2015/06/04 17:24:51 UTC

mesos git commit: Fixed bug with configuration check.

Repository: mesos
Updated Branches:
  refs/heads/master dc379249e -> 2b2618f85


Fixed bug with configuration check.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/2b2618f8
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/2b2618f8
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/2b2618f8

Branch: refs/heads/master
Commit: 2b2618f855a9f377111ad0460fc4a6e9db4d3755
Parents: dc37924
Author: Benjamin Hindman <be...@gmail.com>
Authored: Thu Jun 4 08:18:03 2015 -0700
Committer: Benjamin Hindman <be...@gmail.com>
Committed: Thu Jun 4 08:24:36 2015 -0700

----------------------------------------------------------------------
 3rdparty/libprocess/configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/2b2618f8/3rdparty/libprocess/configure.ac
----------------------------------------------------------------------
diff --git a/3rdparty/libprocess/configure.ac b/3rdparty/libprocess/configure.ac
index 07bbbf7..710490b 100644
--- a/3rdparty/libprocess/configure.ac
+++ b/3rdparty/libprocess/configure.ac
@@ -644,7 +644,7 @@ AS_CASE($ax_cv_cxx_compiler_vendor,
     # Check for GCC version >= 4.8.
     AX_COMPARE_VERSION([$ax_cv_cxx_compiler_version], [ge], [4.8],
                         [is_ge_gxx48=yes], [is_ge_gxx48=no])
-    if test "x$is_ge_gxx48" = "xyes"; then
+    if test "x$is_ge_gxx48" != "xyes"; then
       # GCC < 4.8 is not supported.
       AC_MSG_ERROR([GCC 4.8 or higher required (found $ax_cv_cxx_compiler_version)])
     fi