summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorDanny Kukawka <danny.kukawka@web.de>2009-07-23 13:04:34 +0200
committerDanny Kukawka <danny.kukawka@web.de>2009-07-23 13:04:34 +0200
commit76197a7c5b475b1eaf0f77497d9b3e8c2da958aa (patch)
treea3d6a3a1eec493caaa83aefe083b875fb5f24a76 /configure.in
parent4c949a14457a889bc5b7d1c61d7c29f2365891e3 (diff)
fix configure to get --disable-console-kit working
Fixed configure to get --disable-console-kit working.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 082c9e8f..c213345d 100644
--- a/configure.in
+++ b/configure.in
@@ -511,7 +511,7 @@ AC_DEFINE_UNQUOTED(DBUS_API_SUBJECT_TO_CHANGE, [], [DBUS API is subject to chang
# check for ConsoleKit
AM_CONDITIONAL(HAVE_CONKIT, false)
-AC_ARG_ENABLE([console-kit], AS_HELP_STRING([--enable-console-kit], [Use ConsoleKit]), [enable_console_kit=$enableval,enable_console_kit=yes])
+AC_ARG_ENABLE([console-kit], AS_HELP_STRING([--enable-console-kit], [Use ConsoleKit]), [enable_console_kit=$enableval], [enable_console_kit=yes])
msg_conkit=no
if test "x$enable_console_kit" != "xno"; then
AM_CONDITIONAL(HAVE_CONKIT, true)