mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
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>
This commit is contained in:
committed by
Martin Jansa
parent
db97c329c2
commit
1d41fe47e4
@@ -59,8 +59,8 @@ do_unpack() {
|
||||
}
|
||||
|
||||
|
||||
PACKAGES =+ "lib${PN}"
|
||||
FILES_lib${PN} += "${libdir}/lib*.so"
|
||||
PACKAGES =+ "lib${BPN}"
|
||||
FILES_lib${BPN} += "${libdir}/lib*.so"
|
||||
FILES_${PN}-dev += "${bindir}/js17-config"
|
||||
|
||||
# Fails to build with thumb-1 (qemuarm)
|
||||
|
||||
Reference in New Issue
Block a user