From 9864b0a8253922e044f61506a4a8e9064aac2bd7 Mon Sep 17 00:00:00 2001 From: Phil Blundell Date: Tue, 30 Aug 2011 17:27:13 +0100 Subject: libcap: only enable pam if DISTRO_FEATURES requests it Signed-off-by: Phil Blundell Signed-off-by: Richard Purdie --- meta/recipes-support/libcap/libcap.inc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'meta/recipes-support/libcap/libcap.inc') diff --git a/meta/recipes-support/libcap/libcap.inc b/meta/recipes-support/libcap/libcap.inc index 67f7579e1d..350653071e 100644 --- a/meta/recipes-support/libcap/libcap.inc +++ b/meta/recipes-support/libcap/libcap.inc @@ -5,7 +5,8 @@ HOMEPAGE = "http://sites.google.com/site/fullycapable/" LICENSE = "BSD | GPLv2" LIC_FILES_CHKSUM = "file://License;md5=3f84fd6f29d453a56514cb7e4ead25f1" -DEPENDS = "libpam attr perl-native-runtime" +DEPENDS = "attr perl-native-runtime" +DEPENDS += "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" # attr and pam are disabled by EXTRA_OEMAKE_virtclass-native DEPENDS_virtclass-native = "perl-native-runtime" @@ -20,7 +21,7 @@ do_configure() { sed -e 's,BUILD_CFLAGS ?=,BUILD_CFLAGS := $(BUILD_CFLAGS),' -i Make.Rules } -EXTRA_OEMAKE = "LIBATTR=yes PAM_CAP=yes INDENT= SYSTEM_HEADERS=${STAGING_INCDIR} RAISE_SETFCAP=no" +EXTRA_OEMAKE = "LIBATTR=yes PAM_CAP=${@base_contains('DISTRO_FEATURES', 'pam', 'yes', 'no', d)} INDENT= SYSTEM_HEADERS=${STAGING_INCDIR} RAISE_SETFCAP=no" EXTRA_OEMAKE_virtclass-native = "LIBATTR=no PAM_CAP=no INDENT= " EXTRA_OEMAKE += " lib=${@os.path.basename('${libdir}')}" -- cgit 1.2.3-korg