summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2015-03-04 16:49:17 +0100
committerThomas Haller <thaller@redhat.com>2015-03-04 16:50:17 +0100
commite45054ec9ec503340f51ce0c62847ed01e8d3680 (patch)
tree914e7ae3649ce9a4dc06ec704354e01742b86cf1
parent02130cc157fda398f2677c51e58d3afc23e98667 (diff)
downloadNetworkManager-e45054ec9ec503340f51ce0c62847ed01e8d3680.tar.gz
build: fix typo in configure script failing detection of libsystemd
Also revert 068e9210ec2deb63cda38b2c7cbb1987ed98130d. Fixes: ce6d5580f5f66edc3635854f3c7a98950cf227e9
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 44705dd725..45ff8156be 100644
--- a/configure.ac
+++ b/configure.ac
@@ -373,7 +373,7 @@ AS_IF([test -z "$use_consolekit"], [use_consolekit="yes"])
# output
session_tracking=
if test "$use_systemd_logind" = "yes"; then
- PKG_CHECK_MODULES(SYSTEMD_LOGIND, [libsystemd-login], , [PKG_CHECK_MODULES(SYSTEMD_LOGIN, [libsystemd])])
+ PKG_CHECK_MODULES(SYSTEMD_LOGIN, [libsystemd], , [PKG_CHECK_MODULES(SYSTEMD_LOGIN, [libsystemd-login])])
AC_SUBST(SYSTEMD_LOGIN_CFLAGS)
AC_SUBST(SYSTEMD_LOGIN_LIBS)
AC_DEFINE([SESSION_TRACKING_SYSTEMD], 1, [Define to 1 if libsystemd-login is available])