From: Jim Meyering Date: Wed, 22 Oct 2008 10:44:17 +0000 (+0200) Subject: clean up gl/modules/selinux-at X-Git-Tag: v7.1~164 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5afac2aee1313126ece1eb958d5e0fba6837e93b;p=thirdparty%2Fcoreutils.git clean up gl/modules/selinux-at * gl/modules/selinux-at: Ensure that LIB_SELINUX is cleared, in case it's set in the environment. m4-quote the first two args to AC_SEARCH_LIBS. Don't violate autoconf's ac_ namespace: s/ac_save/gl_save/ Drop the useless double quotes around a simple assignment RHS. --- diff --git a/gl/modules/selinux-at b/gl/modules/selinux-at index 7599083979..d1675fe639 100644 --- a/gl/modules/selinux-at +++ b/gl/modules/selinux-at @@ -13,12 +13,13 @@ configure.ac: # For runcon. AC_CHECK_HEADERS([selinux/flask.h]) AC_LIBOBJ([selinux-at]) -ac_save_LIBS="$LIBS" - AC_SEARCH_LIBS(setfilecon, selinux, +gl_save_LIBS=$LIBS + LIB_SELINUX= + AC_SEARCH_LIBS([setfilecon], [selinux], [test "$ac_cv_search_setfilecon" = "none required" || LIB_SELINUX=$ac_cv_search_setfilecon]) AC_SUBST(LIB_SELINUX) -LIBS="$ac_save_LIBS" +LIBS=$gl_save_LIBS Makefile.am: