diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-08-03 23:19:36 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-03 18:07:25 +0100 |
commit | 5fbac72eb8c3cddf10876cf007aff54180c7264e (patch) | |
tree | 1323a3e9d39e5047d759ef10ee50723a2366b108 /meta/recipes-extended/gamin/gamin_0.1.10.bb | |
parent | 0a4953bab4a31f5e0c029e050976b03385423f12 (diff) | |
download | poky-5fbac72eb8c3cddf10876cf007aff54180c7264e.tar.gz |
multilib: Use BPN instead of PN for style like lib${PN}
When supporting multilib, ${PN} will be extended with MLPREFIX. However
if a package name contains ${PN} with styles like lib${PN}, such
extension will cause error. Use BPN in this case.
(From OE-Core rev: fbb734e5753655de30c82c0a036c9043820e02cb)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/gamin/gamin_0.1.10.bb')
-rw-r--r-- | meta/recipes-extended/gamin/gamin_0.1.10.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-extended/gamin/gamin_0.1.10.bb b/meta/recipes-extended/gamin/gamin_0.1.10.bb index 81b27c0a46..080a3253f0 100644 --- a/meta/recipes-extended/gamin/gamin_0.1.10.bb +++ b/meta/recipes-extended/gamin/gamin_0.1.10.bb | |||
@@ -20,14 +20,14 @@ inherit autotools pkgconfig | |||
20 | 20 | ||
21 | EXTRA_OECONF = "--without-python" | 21 | EXTRA_OECONF = "--without-python" |
22 | 22 | ||
23 | PACKAGES += "lib${PN} lib${PN}-dev" | 23 | PACKAGES += "lib${BPN} lib${BPN}-dev" |
24 | FILES_${PN} = "${libexecdir}" | 24 | FILES_${PN} = "${libexecdir}" |
25 | FILES_${PN}-dbg += "${libexecdir}/.debug" | 25 | FILES_${PN}-dbg += "${libexecdir}/.debug" |
26 | FILES_lib${PN} = "${libdir}/lib*.so.*" | 26 | FILES_lib${BPN} = "${libdir}/lib*.so.*" |
27 | FILES_lib${PN}-dev = "${includedir} ${libdir}/pkgconfig ${libdir}/lib*.la \ | 27 | FILES_lib${BPN}-dev = "${includedir} ${libdir}/pkgconfig ${libdir}/lib*.la \ |
28 | ${libdir}/lib*.a ${libdir}/lib*.so" | 28 | ${libdir}/lib*.a ${libdir}/lib*.so" |
29 | 29 | ||
30 | RDEPENDS_lib${PN} = "${PN}" | 30 | RDEPENDS_lib${BPN} = "${PN}" |
31 | 31 | ||
32 | LEAD_SONAME = "libgamin-1.so" | 32 | LEAD_SONAME = "libgamin-1.so" |
33 | 33 | ||