diff options
author | Dan Williams <dcbw@redhat.com> | 2010-02-27 07:49:57 -0800 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2010-02-27 07:49:57 -0800 |
commit | 20796148cee8021766dacf519bd3953fe8d8416c (patch) | |
tree | cd47da16bb6ef237141f7803cd8ac9b531d17a78 | |
parent | 27ffa6b272132c6c92c07cb99e0f213521874475 (diff) |
build: fix build after bffb332481e2fd665a686e46419e2ddfb28529f1
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 7dde1432..a25308df 100644 --- a/Makefile.am +++ b/Makefile.am @@ -31,6 +31,7 @@ dbusservice_DATA = org.freedesktop.ModemManager.conf dbusservice_file_polkit = org.freedesktop.ModemManager.conf.polkit dbusservice_file_nopolkit = org.freedesktop.ModemManager.conf.nopolkit +org.freedesktop.ModemManager.conf: if WITH_POLKIT cp -f $(top_srcdir)/$(dbusservice_file_polkit) $(dbusservice_DATA) else diff --git a/configure.ac b/configure.ac index 1fba57d9..d636cea5 100644 --- a/configure.ac +++ b/configure.ac @@ -56,7 +56,7 @@ AM_CONDITIONAL(WITH_POLKIT, test "x$with_polkit" = "xyes") case $with_polkit in yes) with_polkit=yes - PKG_CHECK_MODULES(POLKIT, polkit >= 0.95 polkit-gobject-1) + PKG_CHECK_MODULES(POLKIT, polkit-gobject-1 >= 0.95) AC_DEFINE(WITH_POLKIT, 1, [Define if you want to use PolicyKit]) AC_SUBST(POLKIT_CFLAGS) AC_SUBST(POLKIT_LIBS) |