diff options
author | Dongxiao Xu <dongxiao.xu@intel.com> | 2011-08-18 14:55:33 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-19 09:05:53 -0700 |
commit | 58c66c0ef6f9233a308362f0aad36a753206770c (patch) | |
tree | 690e53fbe4ed83ae5370079fd040615bf5100afe /meta | |
parent | 4bb32686a727e0458f091a34800345938fb56606 (diff) | |
download | openembedded-core-58c66c0ef6f9233a308362f0aad36a753206770c.tar.gz openembedded-core-58c66c0ef6f9233a308362f0aad36a753206770c.tar.bz2 openembedded-core-58c66c0ef6f9233a308362f0aad36a753206770c.tar.xz openembedded-core-58c66c0ef6f9233a308362f0aad36a753206770c.zip |
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.
Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/attr/acl.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-support/attr/acl.inc b/meta/recipes-support/attr/acl.inc index 15a87a5a0..b50451723 100644 --- a/meta/recipes-support/attr/acl.inc +++ b/meta/recipes-support/attr/acl.inc @@ -4,7 +4,7 @@ SECTION = "libs" LICENSE = "LGPLv2.1+ & GPLv2+" LICENSE_${PN} = "GPLv2+" -LICENSE_lib${PN} = "LGPLv2.1+" +LICENSE_lib${BPN} = "LGPLv2.1+" LIC_FILES_CHKSUM = "file://doc/COPYING;md5=c781d70ed2b4d48995b790403217a249 \ file://doc/COPYING.LGPL;md5=9e9a206917f8af112da634ce3ab41764" |