diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-25 20:46:50 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-03-25 20:48:51 +0000 |
commit | 4e1ea0e22cf5310dbe18b5427a91d86cc4a136fe (patch) | |
tree | 67d70af6fe65112a1dc03a4a1c1ed28d6c993066 /meta/recipes-extended/at | |
parent | 48dfd61901ce07491ef913cf04dbd9de9a52759f (diff) | |
download | openembedded-core-4e1ea0e22cf5310dbe18b5427a91d86cc4a136fe.tar.gz openembedded-core-4e1ea0e22cf5310dbe18b5427a91d86cc4a136fe.tar.bz2 openembedded-core-4e1ea0e22cf5310dbe18b5427a91d86cc4a136fe.zip |
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.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/at')
-rw-r--r-- | meta/recipes-extended/at/at_3.1.13.bb | 2 |
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 \ --with-daemon_groupname=root \ --with-jobdir=/var/spool/at/jobs \ --with-atspool=/var/spool/at/spool \ - ${@base_contains('DISTRO_FEATURES', 'pam', '--with-pam', '--without-pam', d)} " + ac_cv_header_security_pam_appl_h=${@base_contains('DISTRO_FEATURES', 'pam', 'yes', 'no', d)} " inherit autotools |