mirror of
https://git.yoctoproject.org/poky
synced 2026-04-26 18:32:13 +02:00
syslinux: fix packaging of ${PN} and ${PN}-staticdev
- ${PN} where not being build due ordering;
- ${PN}-staticdev lacked the ${libdir} files.
(From OE-Core rev: e83b2e25ebf0169371035483095a06b3ca5eb479)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
426b7fd111
commit
a4624063ed
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3 \
|
||||
# If you really want to run syslinux, you need mtools. We just want the
|
||||
# ldlinux.* stuff for now, so skip mtools-native
|
||||
DEPENDS = "nasm-native"
|
||||
PR = "r5"
|
||||
PR = "r6"
|
||||
|
||||
SRC_URI = "${KERNELORG_MIRROR}/linux/utils/boot/syslinux/4.xx/syslinux-${PV}.tar.bz2 \
|
||||
file://cross-build.patch"
|
||||
@@ -46,7 +46,7 @@ do_install() {
|
||||
install -m 644 ${S}/core/ldlinux.bss ${D}${libdir}/syslinux/
|
||||
}
|
||||
|
||||
PACKAGES =+ "${PN}-extlinux ${PN}-mbr ${PN}-chain ${PN}-pxelinux ${PN}-isolinux ${PN}-misc"
|
||||
PACKAGES += "${PN}-extlinux ${PN}-mbr ${PN}-chain ${PN}-pxelinux ${PN}-isolinux ${PN}-misc"
|
||||
|
||||
RDEPENDS_${PN} += "mtools"
|
||||
|
||||
@@ -57,7 +57,7 @@ FILES_${PN}-chain = "${libdir}/${PN}/chain.c32"
|
||||
FILES_${PN}-isolinux = "${libdir}/${PN}/isolinux.bin"
|
||||
FILES_${PN}-pxelinux = "${libdir}/${PN}/pxelinux.0"
|
||||
FILES_${PN}-dev += "${datadir}/${PN}/com32/lib*${SOLIBS} ${datadir}/${PN}/com32/include ${datadir}/${PN}/com32/com32.ld"
|
||||
FILES_${PN}-staticdev += "${datadir}/${PN}/com32/lib*.a"
|
||||
FILES_${PN}-staticdev += "${datadir}/${PN}/com32/lib*.a ${libdir}/${PN}/com32/lib*.a"
|
||||
FILES_${PN}-misc = "${libdir}/${PN}/* ${bindir}/*"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
Reference in New Issue
Block a user