From: Stepan Kasal Date: Tue, 15 May 2007 18:46:05 +0000 (+0200) Subject: build-sys: declare SUID_CFLAGS and SUID_LDFLAGS as precious X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f10890f51a68e3c5d42a02eba80ecb0ec49d20f;p=util-linux build-sys: declare SUID_CFLAGS and SUID_LDFLAGS as precious Use AC_ARG_VAR to declare the variables SUID_CFLAGS and SUID_LDFLAGS as precious. Signed-off-by: Stepan Kasal --- diff --git a/configure.ac b/configure.ac index 8740086d..5564475b 100644 --- a/configure.ac +++ b/configure.ac @@ -399,8 +399,10 @@ if test x$enable_use_tty_group = xyes; then fi -AC_SUBST([SUID_CFLAGS]) -AC_SUBST([SUID_LDFLAGS]) +AC_ARG_VAR([SUID_CFLAGS], + [CFLAGS used for binaries which are usually with the suid bit]) +AC_ARG_VAR([SUID_LDFLAGS], + [LDFLAGS used for binaries which are usually with the suid bit]) LIBS=""