diff --git a/ChangeLog b/ChangeLog index 0d95b23c..c48875ad 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-11-27 Mike Frysinger + + * configure.in: Fix the "$enable_acct_tools_setuid" = "yes" test. + 2008-11-27 Mike Frysinger * NEWS, configure.in, libmisc/chkname.c: make group max length a diff --git a/configure.in b/configure.in index 5361b3b8..d9983180 100644 --- a/configure.in +++ b/configure.in @@ -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])