From 70a0ebeef2cbde5a410c47e069eff085e0caefa0 Mon Sep 17 00:00:00 2001 From: Cedric Bail Date: Sun, 4 May 2014 13:24:30 +0200 Subject: [PATCH] autotools: fix typos for autodetecting C++11. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 777e8469fe..95e391a8b0 100644 --- a/configure.ac +++ b/configure.ac @@ -952,13 +952,13 @@ EFL_LIB_END([Eina]) EFL_LIB_START([Eina_Cxx]) AX_CXX_COMPILE_STDCXX_11([ext]) -if test "x${HAVE_CXX11}" -a "x1"; then +if test "x${HAVE_CXX11}" = "x1"; then have_cxx11="yes" else have_cxx11="no" fi -AM_CONDITIONAL([HAVE_CXX11], [test "x${have_cxx11}" -a "xyes"]) +AM_CONDITIONAL([HAVE_CXX11], [test "x${have_cxx11}" = "xyes"]) EFL_INTERNAL_DEPEND_PKG([EINA_CXX], [Eina]) EFL_EVAL_PKGS([EINA_CXX])