* configure.in: Fix the "$enable_acct_tools_setuid" = "yes" test.

This commit is contained in:
nekral-guest 2008-11-30 01:32:38 +00:00
parent c28c443d8f
commit 66cb5b33ad
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2008-11-27 Mike Frysinger <vapier@gentoo.org>
* configure.in: Fix the "$enable_acct_tools_setuid" = "yes" test.
2008-11-27 Mike Frysinger <vapier@gentoo.org>
* NEWS, configure.in, libmisc/chkname.c: make group max length a

View File

@ -449,7 +449,7 @@ if test "$enable_acct_tools_setuid" != "no"; then
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])