[Pkg-shadow-commits] r2464 - upstream/trunk

nekral-guest at alioth.debian.org nekral-guest at alioth.debian.org
Sun Nov 30 01:32:39 UTC 2008


Author: nekral-guest
Date: 2008-11-30 01:32:38 +0000 (Sun, 30 Nov 2008)
New Revision: 2464

Modified:
   upstream/trunk/ChangeLog
   upstream/trunk/configure.in
Log:
	* configure.in: Fix the "$enable_acct_tools_setuid" = "yes" test.


Modified: upstream/trunk/ChangeLog
===================================================================
--- upstream/trunk/ChangeLog	2008-11-30 01:29:40 UTC (rev 2463)
+++ upstream/trunk/ChangeLog	2008-11-30 01:32:38 UTC (rev 2464)
@@ -1,5 +1,9 @@
 2008-11-27  Mike Frysinger  <vapier at gentoo.org>
 
+	* configure.in: Fix the "$enable_acct_tools_setuid" = "yes" test.
+
+2008-11-27  Mike Frysinger  <vapier at gentoo.org>
+
 	* NEWS, configure.in, libmisc/chkname.c: make group max length a
 	configure option.  The configure behavior encoded is:
 	<no option> -> default of 16 (like today);

Modified: upstream/trunk/configure.in
===================================================================
--- upstream/trunk/configure.in	2008-11-30 01:29:40 UTC (rev 2463)
+++ upstream/trunk/configure.in	2008-11-30 01:32:38 UTC (rev 2464)
@@ -449,7 +449,7 @@
 			enable_acct_tools_setuid="no"
 		fi
 	fi
-	if "$enable_acct_tools_setuid" = "yes"; then
+	if test "$enable_acct_tools_setuid" = "yes"; then
 		AC_DEFINE(ACCT_TOOLS_SETUID,
 		          1,
 		          [Define if account management tools should be installed setuid and authenticate the callers])




More information about the Pkg-shadow-commits mailing list