From 338f1e4e6af6633995188b4f5bd5ff6aed669884 Mon Sep 17 00:00:00 2001 From: Alban Browaeys Date: Wed, 2 Jan 2013 10:36:51 +0100 Subject: [PATCH] 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 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)