summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-25 20:46:50 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-03-25 20:48:54 +0000
commit18c888ddc4c9dd87eaf5f628785697b40384c4ba (patch)
treee67f14dc98c700e4c1e3474fc150cf2959856a01
parentc376f1f49cea182a2887945840ab97a20970a373 (diff)
downloadpoky-18c888ddc4c9dd87eaf5f628785697b40384c4ba.tar.gz
at: Fix --with/without pam options
The --with/--without pam support in configure appears to have been dropped leading to builds which can detect host headers, then fail or result in non- determinstic builds. Add an explicit option to fix this detection. (From OE-Core rev: 4e1ea0e22cf5310dbe18b5427a91d86cc4a136fe) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/at/at_3.1.13.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/at/at_3.1.13.bb b/meta/recipes-extended/at/at_3.1.13.bb
index 198b46e71d..6fa13b91fb 100644
--- a/meta/recipes-extended/at/at_3.1.13.bb
+++ b/meta/recipes-extended/at/at_3.1.13.bb
@@ -39,7 +39,7 @@ EXTRA_OECONF += "ac_cv_path_SENDMAIL=/bin/true \
39 --with-daemon_groupname=root \ 39 --with-daemon_groupname=root \
40 --with-jobdir=/var/spool/at/jobs \ 40 --with-jobdir=/var/spool/at/jobs \
41 --with-atspool=/var/spool/at/spool \ 41 --with-atspool=/var/spool/at/spool \
42 ${@base_contains('DISTRO_FEATURES', 'pam', '--with-pam', '--without-pam', d)} " 42 ac_cv_header_security_pam_appl_h=${@base_contains('DISTRO_FEATURES', 'pam', 'yes', 'no', d)} "
43 43
44inherit autotools 44inherit autotools
45 45