diff options
| author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-08-18 14:53:02 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-19 09:29:20 -0700 |
| commit | 3b387d7b639405fb832628ccbab6410360a5e53d (patch) | |
| tree | 1497d9631cb49cebaa031c397906e60d29caca1c | |
| parent | 90d20d0d63d273218eeff0b592e5b0783e8259f8 (diff) | |
| download | poky-3b387d7b639405fb832628ccbab6410360a5e53d.tar.gz | |
ea-acl: 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: 2768b3b26d392d988d392c80e52e1f5e9da23c5c)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-support/attr/ea-acl.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-support/attr/ea-acl.inc b/meta/recipes-support/attr/ea-acl.inc index 4e794214f4..2ef138957e 100644 --- a/meta/recipes-support/attr/ea-acl.inc +++ b/meta/recipes-support/attr/ea-acl.inc | |||
| @@ -18,9 +18,9 @@ do_install () { | |||
| 18 | 18 | ||
| 19 | PACKAGES =+ "lib${BPN} lib${BPN}-dev lib${BPN}-doc" | 19 | PACKAGES =+ "lib${BPN} lib${BPN}-dev lib${BPN}-doc" |
| 20 | 20 | ||
| 21 | FILES_lib${PN} = "${base_libdir}/lib*.so.*" | 21 | FILES_lib${BPN} = "${base_libdir}/lib*.so.*" |
| 22 | 22 | ||
| 23 | FILES_lib${PN}-dev = "${includedir} \ | 23 | FILES_lib${BPN}-dev = "${includedir} \ |
| 24 | ${libdir}/lib*.so \ | 24 | ${libdir}/lib*.so \ |
| 25 | ${libdir}/lib*.a \ | 25 | ${libdir}/lib*.a \ |
| 26 | ${libdir}/lib*.la \ | 26 | ${libdir}/lib*.la \ |
| @@ -28,7 +28,7 @@ FILES_lib${PN}-dev = "${includedir} \ | |||
| 28 | ${base_libdir}/lib*.a \ | 28 | ${base_libdir}/lib*.a \ |
| 29 | ${base_libdir}/lib*.la" | 29 | ${base_libdir}/lib*.la" |
| 30 | 30 | ||
| 31 | FILES_lib${PN}-doc = "${mandir}/man2 \ | 31 | FILES_lib${BPN}-doc = "${mandir}/man2 \ |
| 32 | ${mandir}/man3" | 32 | ${mandir}/man3" |
| 33 | 33 | ||
| 34 | BBCLASSEXTEND = "native" | 34 | BBCLASSEXTEND = "native" |
