You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by jp...@apache.org on 2016/06/20 23:22:50 UTC

[trafficserver] branch master updated: TS-4566: Fix LUA_CFLAGS whitespacing.

This is an automated email from the ASF dual-hosted git repository.

jpeach pushed a commit to branch master
in repository https://git-dual.apache.org/repos/asf/trafficserver.git

The following commit(s) were added to refs/heads/master by this push:
       new  3276feb   TS-4566: Fix LUA_CFLAGS whitespacing.
3276feb is described below

commit 3276feb6c9fdaab1dc5bc13628198f00223dcf53
Author: James Peach <jp...@apache.org>
AuthorDate: Mon Jun 20 16:17:58 2016 -0700

    TS-4566: Fix LUA_CFLAGS whitespacing.
    
    If LUA_CFLAGS get set, the AC_SUBST ends up being sensitive to
    whitespace. Use TS_ADDTO() which deals with this.
---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 8a0c791..b160d14 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1888,8 +1888,8 @@ iocore_include_dirs="\
 # of the generic flags, plus any Lua-specific flags so that we
 # can strip the coverage flags from Lua while keeping them by
 # default everywhere else.
-AC_SUBST([LUA_CFLAGS], [$CFLAGS $lua_cflags])
-AC_SUBST(LUA_LDFLAGS)
+TS_ADDTO(LUA_CFLAGS, [$CFLAGS $lua_cflags])
+AC_SUBST([LUA_CFLAGS])
 
 TS_REMOVEFROM(LUA_CFLAGS, "-fsanitize=address")
 TS_REMOVEFROM(LUA_CFLAGS, "-fsanitize=thread")

-- 
To stop receiving notification emails like this one, please contact
['"commits@trafficserver.apache.org" <co...@trafficserver.apache.org>'].