diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-08-18 14:54:55 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-19 09:05:53 -0700 |
commit | 4bb32686a727e0458f091a34800345938fb56606 (patch) | |
tree | bf25e2ee7b0fc49e97cb599a398f1a5e44bf1b8b /meta/recipes-support | |
parent | 2768b3b26d392d988d392c80e52e1f5e9da23c5c (diff) | |
download | openembedded-core-4bb32686a727e0458f091a34800345938fb56606.tar.gz openembedded-core-4bb32686a727e0458f091a34800345938fb56606.tar.bz2 openembedded-core-4bb32686a727e0458f091a34800345938fb56606.zip |
attr: 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.
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/attr/attr.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/attr/attr.inc b/meta/recipes-support/attr/attr.inc index c11034069c..6deb004b1c 100644 --- a/meta/recipes-support/attr/attr.inc +++ b/meta/recipes-support/attr/attr.inc @@ -6,7 +6,7 @@ DEPENDS = "ncurses" LICENSE = "LGPLv2.1+ & GPLv2+" LICENSE_${PN} = "GPLv2+" -LICENSE_lib${PN} = "LGPLv2.1+" +LICENSE_lib${BPN} = "LGPLv2.1+" LIC_FILES_CHKSUM = "file://doc/COPYING;md5=2d0aa14b3fce4694e4f615e30186335f \ file://attr/attr.c;endline=17;md5=be0403261f0847e5f43ed5b08d19593c \ file://libattr/libattr.c;endline=17;md5=7970f77049f8fa1199fff62a7ab724fb" |