diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2008-10-02 19:10:54 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2008-10-24 19:57:29 -0200 |
commit | fdf64f87709e53025a8c58ccfbdc02422651d676 (patch) | |
tree | 84e8fb557431fdcbe22b47c43220c5d166c6ca0e /packages/pam/libpam_1.0.2.bb | |
parent | 9e03174940f778e87b8584ab125b6fccba3700ea (diff) |
pam (1.0.2 and 0.79): install headers in ${includedir}/security
While building an O.S. Systems module that uses the PAM library this
problem has been found since the code was compiling fine in a lot of
different environments and failing on OE.
Checking the source has been noticed that upstream explicitely set
includedir in configure script but autotools class overrided it by
mistake. This fixes it to the desired behaviour.
Diffstat (limited to 'packages/pam/libpam_1.0.2.bb')
-rw-r--r-- | packages/pam/libpam_1.0.2.bb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/pam/libpam_1.0.2.bb b/packages/pam/libpam_1.0.2.bb index 0b7eada2ab..b1ceb1bb04 100644 --- a/packages/pam/libpam_1.0.2.bb +++ b/packages/pam/libpam_1.0.2.bb @@ -12,7 +12,7 @@ LICENSE = "GPLv2" DEPENDS = "flex flex-native" -PR = "r1" +PR = "r2" # The project is actually called Linux-PAM but that gives # a bad OE package name because of the upper case characters @@ -27,6 +27,9 @@ inherit autotools LEAD_SONAME = "libpam.so.*" +# maintain the pam default layout +EXTRA_OECONF += " --includedir=${includedir}/security" + python populate_packages_prepend () { import os.path @@ -44,4 +47,3 @@ python populate_packages_prepend () { do_stage() { autotools_stage_all } - |