summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlban Browaeys <prahal@yahoo.com>2013-01-02 10:36:51 +0100
committerDan Winship <danw@gnome.org>2013-01-02 12:50:32 -0500
commit338f1e4e6af6633995188b4f5bd5ff6aed669884 (patch)
tree8606f27e780ed88d0b3d7fc14f1d6dae265fc475
parenta787e5c585a0dfb235604f971368b5517735f872 (diff)
downloadNetworkManager-338f1e4e6af6633995188b4f5bd5ff6aed669884.tar.gz
build: Fix with_session_tracking check vs consolkit.
Fix with_session_tracking check vs consolkit, missing dollar before identifier. https://bugzilla.gnome.org/show_bug.cgi?id=690991
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 40d703a1ec..f94d29c6d4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -288,7 +288,7 @@ if test "$with_session_tracking" = "systemd"; then
AC_SUBST(SYSTEMD_LOGIN_CFLAGS)
AC_SUBST(SYSTEMD_LOGIN_LIBS)
fi
-if test "with_session_tracking" = "consolekit"; then
+if test "$with_session_tracking" = "consolekit"; then
AC_SUBST(CKDB_PATH, /var/run/ConsoleKit/database)
fi
AC_MSG_RESULT($with_session_tracking)