From 0a5e9d90e74605f997c98a4724f6c72f9d380982 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Fri, 26 Oct 2012 14:43:15 +0200 Subject: [PATCH] configure.ac: don't tramp on user's CFLAGS The configure test shouldn't touch CFLAGS, because they come last on the command line and allow to users to override settings if needed. Signed-off-by: Ran Benita --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 46ef469..7981e34 100644 --- a/configure.ac +++ b/configure.ac @@ -72,7 +72,7 @@ fi AC_CHECK_FUNCS([eaccess euidaccess]) -XORG_TESTSET_CFLAG([CFLAGS], [-fvisibility=hidden]) +XORG_TESTSET_CFLAG([BASE_CFLAGS], [-fvisibility=hidden]) # Define a configuration option for the XKB config root xkb_base=`$PKG_CONFIG --variable=xkb_base xkeyboard-config`