From patchwork Thu Jan 31 12:38:45 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: polkit: respect systemd DISTRO_FEATURE Date: Thu, 31 Jan 2013 12:38:45 -0000 From: Ross Burton X-Patchwork-Id: 43741 Message-Id: <1359635925-27715-1-git-send-email-ross.burton@intel.com> To: openembedded-core@lists.openembedded.org By default polkit uses systemd if it's available, which mean systemd runtime dependencies sneaking into non-systemd builds via sstate. Instead respect the systemd feature and enable/disable support as relevant. Signed-off-by: Ross Burton --- meta/recipes-extended/polkit/polkit_0.104.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta/recipes-extended/polkit/polkit_0.104.bb b/meta/recipes-extended/polkit/polkit_0.104.bb index 2c0aaca..37d8428 100644 --- a/meta/recipes-extended/polkit/polkit_0.104.bb +++ b/meta/recipes-extended/polkit/polkit_0.104.bb @@ -7,8 +7,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=155db86cdbafa7532b41f390409283eb \ DEPENDS = "expat glib-2.0 intltool-native gobject-introspection-stub" -PACKAGECONFIG = "${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)}" +PACKAGECONFIG = "${@base_contains('DISTRO_FEATURES', 'pam', 'pam', '', d)} \ + ${@base_contains('DISTRO_FEATURES', 'systemd', 'systemd', '', d)}" PACKAGECONFIG[pam] = "--with-authfw=pam,--with-authfw=shadow,libpam,libpam" +PACKAGECONFIG[systemd] = "--enable-systemd,--disable-systemd,systemd" PR = "r9"