From 66cb5b33adfb2dc51b4094ea45aac13dfd1dca1e Mon Sep 17 00:00:00 2001 From: nekral-guest Date: Sun, 30 Nov 2008 01:32:38 +0000 Subject: [PATCH] * configure.in: Fix the "$enable_acct_tools_setuid" = "yes" test. --- ChangeLog | 4 ++++ configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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])