diff options
author | Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> | 2012-08-03 10:21:30 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-06 16:09:15 +0100 |
commit | bff36f1736add41766463474f171df0c73a8c6f5 (patch) | |
tree | 9cfb749682c293f6c2644c31f879e1ad9eaa6764 /meta/recipes-extended/pam/libpam_1.1.5.bb | |
parent | 1b348704a65428d90bae022a7c4aaf813c506a2a (diff) | |
download | poky-bff36f1736add41766463474f171df0c73a8c6f5.tar.gz |
libpam: disable NIS to not link with libtirpc when it is available
I was checking ways to make incremental builds faster so I started using
sstate-cache and SSTATE_MIRRORS. But this gave me some nasty bug:
| Collected errors:
| * satisfy_dependencies_for: Cannot satisfy the following dependencies
for php-cgi:
| * libtirpc1 (>= 0.2.2) *
| * opkg_install_cmd: Cannot install package php-cgi.
I checked details:
In my previous build libtirpc got built before libpam so libpam found it
and linked. As a result packages depend on libtirpc1 but as there is no
such build dependency sstate handling code did not used libtirpc copy...
(From OE-Core rev: e629bdcd1bcb51f2d2101fb53daeac0bd29ab637)
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/pam/libpam_1.1.5.bb')
-rw-r--r-- | meta/recipes-extended/pam/libpam_1.1.5.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/pam/libpam_1.1.5.bb b/meta/recipes-extended/pam/libpam_1.1.5.bb index c035aafe14..f776e76da8 100644 --- a/meta/recipes-extended/pam/libpam_1.1.5.bb +++ b/meta/recipes-extended/pam/libpam_1.1.5.bb | |||
@@ -9,7 +9,7 @@ SECTION = "base" | |||
9 | LICENSE = "GPLv2+ | BSD" | 9 | LICENSE = "GPLv2+ | BSD" |
10 | LIC_FILES_CHKSUM = "file://COPYING;md5=ca0395de9a86191a078b8b79302e3083" | 10 | LIC_FILES_CHKSUM = "file://COPYING;md5=ca0395de9a86191a078b8b79302e3083" |
11 | 11 | ||
12 | PR = "r5" | 12 | PR = "r6" |
13 | 13 | ||
14 | SRC_URI = "https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-${PV}.tar.bz2 \ | 14 | SRC_URI = "https://fedorahosted.org/releases/l/i/linux-pam/Linux-PAM-${PV}.tar.bz2 \ |
15 | file://99_pam \ | 15 | file://99_pam \ |
@@ -28,6 +28,7 @@ DEPENDS = "bison flex flex-native cracklib" | |||
28 | EXTRA_OECONF = "--with-db-uniquename=_pam \ | 28 | EXTRA_OECONF = "--with-db-uniquename=_pam \ |
29 | --includedir=${includedir}/security \ | 29 | --includedir=${includedir}/security \ |
30 | --libdir=${base_libdir} \ | 30 | --libdir=${base_libdir} \ |
31 | --disable-nis \ | ||
31 | --disable-regenerate-docu" | 32 | --disable-regenerate-docu" |
32 | 33 | ||
33 | CFLAGS_append = " -fPIC " | 34 | CFLAGS_append = " -fPIC " |