From: Russell Bryant Date: Mon, 14 May 2007 16:08:19 +0000 (+0000) Subject: Remove an extra space from the macro that checks for C defines. X-Git-Tag: 1.6.0-beta1~3^2~2690 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=674117f06bf015b1f087d8c997867fc26901671a;p=thirdparty%2Fasterisk.git Remove an extra space from the macro that checks for C defines. (issue #9715, tzafrir) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@64225 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/acinclude.m4 b/acinclude.m4 index cc1f61e769..3732091fe6 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -77,7 +77,7 @@ AC_DEFUN([AST_C_DEFINE_CHECK], AC_MSG_CHECKING([for $2 in $3]) saved_cppflags="${CPPFLAGS}" if test "x${$1_DIR}" != "x"; then - $1_INCLUDE= "-I${$1_DIR}/include" + $1_INCLUDE="-I${$1_DIR}/include" fi CPPFLAGS="${CPPFLAGS} ${$1_INCLUDE}"