mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-12 05:11:59 +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}"
|
PACKAGES =+ "lib${BPN}"
|
||||||
FILES_lib${PN} += "${libdir}/lib*.so"
|
FILES_lib${BPN} += "${libdir}/lib*.so"
|
||||||
FILES_${PN}-dev += "${bindir}/js17-config"
|
FILES_${PN}-dev += "${bindir}/js17-config"
|
||||||
|
|
||||||
# Fails to build with thumb-1 (qemuarm)
|
# Fails to build with thumb-1 (qemuarm)
|
||||||
|
|||||||
Reference in New Issue
Block a user