diff options
author | Ross Burton <ross.burton@intel.com> | 2016-02-01 21:09:04 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-02 14:44:17 +0000 |
commit | 4ac40235eaf4ca1fd943be76772dafa278d61609 (patch) | |
tree | e5351e85df19c1d34dd23186ce59a38e27cbf1a1 /meta/recipes-support/p11-kit | |
parent | 9a27010c5f133f0e56938a1c4bd6648cf264a276 (diff) | |
download | poky-4ac40235eaf4ca1fd943be76772dafa278d61609.tar.gz |
p11-kit: fix module packaging
These .so files are actually loadable modules, so should be installed into $PN
not $PN-dev.
(From OE-Core rev: 0892645289b08d84f388d80af1bb7fa55fb9f0d9)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/p11-kit')
-rw-r--r-- | meta/recipes-support/p11-kit/p11-kit_0.22.1.bb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/meta/recipes-support/p11-kit/p11-kit_0.22.1.bb b/meta/recipes-support/p11-kit/p11-kit_0.22.1.bb index f5013722ea..798ad37def 100644 --- a/meta/recipes-support/p11-kit/p11-kit_0.22.1.bb +++ b/meta/recipes-support/p11-kit/p11-kit_0.22.1.bb | |||
@@ -12,9 +12,10 @@ SRC_URI[sha256sum] = "ef3a339fcf6aa0e32c8c23f79ba7191e57312be2bda8b24e6d121c2670 | |||
12 | 12 | ||
13 | EXTRA_OECONF = "--without-trust-paths" | 13 | EXTRA_OECONF = "--without-trust-paths" |
14 | 14 | ||
15 | FILES_${PN}-dev += " \ | 15 | FILES_${PN} += " \ |
16 | ${libdir}/p11-kit-proxy.so \ | 16 | ${libdir}/p11-kit-proxy.so \ |
17 | ${libdir}/pkcs11/p11-kit-trust.so \ | 17 | ${libdir}/pkcs11/*.so \ |
18 | " | 18 | ${libdir}/pkcs11/*.la" |
19 | FILES_${PN}-dev += "${libdir}/pkcs11/*.la" | ||
20 | 19 | ||
20 | # PN contains p11-kit-proxy.so, a symlink to a loadable module | ||
21 | INSANE_SKIP_${PN} = "dev-elf" | ||