diff options
author | David Nyström <david.c.nystrom@gmail.com> | 2013-09-23 16:34:01 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-24 17:24:13 +0100 |
commit | a60c6b3bdcfe6ecb6066186ec371ae9ecbf92e3a (patch) | |
tree | f9fbeb83995c62c16e7548b392bba828e66180e2 /meta | |
parent | ad311a1931e4f560c5c15fac82da739a4a7ab117 (diff) | |
download | ast2050-yocto-poky-a60c6b3bdcfe6ecb6066186ec371ae9ecbf92e3a.zip ast2050-yocto-poky-a60c6b3bdcfe6ecb6066186ec371ae9ecbf92e3a.tar.gz |
libpam: Avoid host contamination issue w. libprelude
Since we dont use prelude in OE, we just disable autodetection of
prelude in the libpam configuration.
Seems like an old bug:
http://lists.openembedded.org/pipermail/openembedded-devel/2012-March/083804.html
(From OE-Core rev: 9096c6a46cf2467c90873c235b4533faf97d6175)
Signed-off-by: David Nyström <david.nystrom@enea.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/pam/libpam_1.1.6.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/pam/libpam_1.1.6.bb b/meta/recipes-extended/pam/libpam_1.1.6.bb index f7493c5..c9bdcb0 100644 --- a/meta/recipes-extended/pam/libpam_1.1.6.bb +++ b/meta/recipes-extended/pam/libpam_1.1.6.bb @@ -37,7 +37,8 @@ EXTRA_OECONF = "--with-db-uniquename=_pam \ --includedir=${includedir}/security \ --libdir=${base_libdir} \ --disable-nis \ - --disable-regenerate-docu" + --disable-regenerate-docu \ + --disable-prelude" CFLAGS_append = " -fPIC " |