From c9f988534ad76e3f3efc48d344756cdb0a850e9b Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Fri, 11 May 2012 17:40:46 +0000 Subject: [PATCH] Ecore: do not use += with shell variables (not portable) Patch by Raphael Kubo da Costa SVN revision: 70934 --- legacy/ecore/m4/ecore_check_options.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/ecore/m4/ecore_check_options.m4 b/legacy/ecore/m4/ecore_check_options.m4 index fb7031a182..d20adcaeca 100644 --- a/legacy/ecore/m4/ecore_check_options.m4 +++ b/legacy/ecore/m4/ecore_check_options.m4 @@ -178,8 +178,8 @@ if test "x${_ecore_want_gnutls}" = "xyes" -o "x${_ecore_want_gnutls}" = "xauto" if test "x$_ecore_have_gnutls" = "xyes";then AC_PATH_GENERIC([libgcrypt], [], [_ecore_have_gnutls="yes"], [_ecore_have_gnutls="no"]) if test "x${_ecore_have_gnutls}" = "xyes" ; then - TLS_CFLAGS+=" ${LIBGCRYPT_CFLAGS}" - TLS_LIBS+=" ${LIBGCRYPT_LIBS}" + TLS_CFLAGS="${TLS_CFLAGS} ${LIBGCRYPT_CFLAGS}" + TLS_LIBS="${TLS_LIBS} ${LIBGCRYPT_LIBS}" fi fi