Ecore: do not use += with shell variables (not portable)

Patch by Raphael Kubo da Costa


SVN revision: 70934
This commit is contained in:
Vincent Torri 2012-05-11 17:40:46 +00:00
parent b58cf98a85
commit c9f988534a
1 changed files with 2 additions and 2 deletions

View File

@ -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