diff options
| author | Jeremy Puhlman <jpuhlman@mvista.com> | 2016-07-31 21:20:41 -0700 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-08-08 13:46:50 +0200 |
| commit | 1d41fe47e46a6409c45802dbec61bb7200ef9e62 (patch) | |
| tree | 9388cdfc9f078c23b6607460bb92176ac93db41a | |
| parent | db97c329c23df9da06d2deb0e628c1ea01293326 (diff) | |
| download | meta-openembedded-1d41fe47e46a6409c45802dbec61bb7200ef9e62.tar.gz | |
mozjs: Fix incorrect usage of PN.
When building mutlilib, using ${PN} in the middle of the package name
creates incorrect package names:
lib32-liblib32-mozjs
lib32-liblib32-mozjs.shlibdeps
Which in turn breaks license.bbclass during image creation.
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
| -rw-r--r-- | meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb b/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb index 02d56942fa..f147714994 100644 --- a/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb +++ b/meta-oe/recipes-extended/mozjs/mozjs_17.0.0.bb | |||
| @@ -59,8 +59,8 @@ do_unpack() { | |||
| 59 | } | 59 | } |
| 60 | 60 | ||
| 61 | 61 | ||
| 62 | PACKAGES =+ "lib${PN}" | 62 | PACKAGES =+ "lib${BPN}" |
| 63 | FILES_lib${PN} += "${libdir}/lib*.so" | 63 | FILES_lib${BPN} += "${libdir}/lib*.so" |
| 64 | FILES_${PN}-dev += "${bindir}/js17-config" | 64 | FILES_${PN}-dev += "${bindir}/js17-config" |
| 65 | 65 | ||
| 66 | # Fails to build with thumb-1 (qemuarm) | 66 | # Fails to build with thumb-1 (qemuarm) |
