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:29:20 -0700 |
commit | 1216f6fe63e8be67809c31acf0eef03476735b53 (patch) | |
tree | 5a92670e484c35f4c38f5c13f79c6173769a7eb4 /meta/recipes-support/attr/attr.inc | |
parent | 3b387d7b639405fb832628ccbab6410360a5e53d (diff) | |
download | poky-1216f6fe63e8be67809c31acf0eef03476735b53.tar.gz |
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.
(From OE-Core rev: 4bb32686a727e0458f091a34800345938fb56606)
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/attr/attr.inc')
-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" | |||
6 | 6 | ||
7 | LICENSE = "LGPLv2.1+ & GPLv2+" | 7 | LICENSE = "LGPLv2.1+ & GPLv2+" |
8 | LICENSE_${PN} = "GPLv2+" | 8 | LICENSE_${PN} = "GPLv2+" |
9 | LICENSE_lib${PN} = "LGPLv2.1+" | 9 | LICENSE_lib${BPN} = "LGPLv2.1+" |
10 | LIC_FILES_CHKSUM = "file://doc/COPYING;md5=2d0aa14b3fce4694e4f615e30186335f \ | 10 | LIC_FILES_CHKSUM = "file://doc/COPYING;md5=2d0aa14b3fce4694e4f615e30186335f \ |
11 | file://attr/attr.c;endline=17;md5=be0403261f0847e5f43ed5b08d19593c \ | 11 | file://attr/attr.c;endline=17;md5=be0403261f0847e5f43ed5b08d19593c \ |
12 | file://libattr/libattr.c;endline=17;md5=7970f77049f8fa1199fff62a7ab724fb" | 12 | file://libattr/libattr.c;endline=17;md5=7970f77049f8fa1199fff62a7ab724fb" |