autotools: fix typos for autodetecting C++11.

This commit is contained in:
Cedric Bail 2014-05-04 13:24:30 +02:00
parent 5c7c38c025
commit 70a0ebeef2
1 changed files with 2 additions and 2 deletions

View File

@ -952,13 +952,13 @@ EFL_LIB_END([Eina])
EFL_LIB_START([Eina_Cxx]) EFL_LIB_START([Eina_Cxx])
AX_CXX_COMPILE_STDCXX_11([ext]) AX_CXX_COMPILE_STDCXX_11([ext])
if test "x${HAVE_CXX11}" -a "x1"; then if test "x${HAVE_CXX11}" = "x1"; then
have_cxx11="yes" have_cxx11="yes"
else else
have_cxx11="no" have_cxx11="no"
fi 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_INTERNAL_DEPEND_PKG([EINA_CXX], [Eina])
EFL_EVAL_PKGS([EINA_CXX]) EFL_EVAL_PKGS([EINA_CXX])