summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2013-07-27 22:47:11 +0200
committerArthur de Jong <arthur@arthurdejong.org>2013-07-28 20:00:26 +0200
commit5d3f681e04861f15539fe639e7a4e289050a315e (patch)
treeb16a23a258d5ff8fd0afd4d49c88636d26b936ea /configure.ac
parent5adc2cae8909924dadeac78916d1b14680dc8061 (diff)
Have configure show --disable-utils by default
Since the utils are automatically built if Python is available --disable is more appropriate a default then --enable.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e77999e..9774e3a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -131,7 +131,7 @@ AM_CONDITIONAL([ENABLE_PAM], [test "x$enable_pam" = "xyes"])
# check whether command-line utilities should be built
AC_MSG_CHECKING([whether to build the command-line utilities])
AC_ARG_ENABLE(utils,
- AS_HELP_STRING([--enable-utils],
+ AS_HELP_STRING([--disable-utils],
[build the the command-line utilities @<:@auto@:>@]),,
[enable_utils="auto"])
if test "x$enable_utils" = "xauto"