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-devtools/python | |
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-devtools/python')
-rw-r--r-- | meta/recipes-devtools/python/python_2.6.6.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/python/python_2.6.6.bb b/meta/recipes-devtools/python/python_2.6.6.bb index f71440a592..c9c1a13cbb 100644 --- a/meta/recipes-devtools/python/python_2.6.6.bb +++ b/meta/recipes-devtools/python/python_2.6.6.bb | |||
@@ -116,8 +116,8 @@ FILES_${PN}-core += "${libdir}/python${PYTHON_MAJMIN}/sitecustomize.py" | |||
116 | FILES_${PN}-core += "${bindir}/2to3" | 116 | FILES_${PN}-core += "${bindir}/2to3" |
117 | 117 | ||
118 | # package libpython2 | 118 | # package libpython2 |
119 | PACKAGES =+ "lib${PN}2" | 119 | PACKAGES =+ "lib${BPN}2" |
120 | FILES_lib${PN}2 = "${libdir}/libpython*.so.*" | 120 | FILES_lib${BPN}2 = "${libdir}/libpython*.so.*" |
121 | 121 | ||
122 | # additional stuff -dev | 122 | # additional stuff -dev |
123 | 123 | ||