summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-extended/pam/libpam_1.1.6.bb6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/recipes-extended/pam/libpam_1.1.6.bb b/meta/recipes-extended/pam/libpam_1.1.6.bb
index 96133c361b..f811f4ce0f 100644
--- a/meta/recipes-extended/pam/libpam_1.1.6.bb
+++ b/meta/recipes-extended/pam/libpam_1.1.6.bb
@@ -99,3 +99,9 @@ do_install() {
99 # The lsb requires unix_chkpwd has setuid permission 99 # The lsb requires unix_chkpwd has setuid permission
100 chmod 4755 ${D}${sbindir}/unix_chkpwd 100 chmod 4755 ${D}${sbindir}/unix_chkpwd
101} 101}
102
103python do_pam_sanity () {
104 if "pam" not in d.getVar("DISTRO_FEATURES", True).split():
105 bb.warn("Building libpam but 'pam' isn't in DISTRO_FEATURES, PAM won't work correctly")
106}
107addtask pam_sanity before do_configure