diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2012-02-29 06:03:13 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-02-29 11:04:51 +0000 |
commit | e83b2e25ebf0169371035483095a06b3ca5eb479 (patch) | |
tree | a266f8487aa2094a4c0a644b0b6f8ea6ac25fdd8 /meta/recipes-devtools/syslinux | |
parent | e32e23649f4eab0bdc71a854f99b11fee19125ac (diff) | |
download | openembedded-core-e83b2e25ebf0169371035483095a06b3ca5eb479.tar.gz openembedded-core-e83b2e25ebf0169371035483095a06b3ca5eb479.tar.bz2 openembedded-core-e83b2e25ebf0169371035483095a06b3ca5eb479.zip |
syslinux: fix packaging of ${PN} and ${PN}-staticdev
- ${PN} where not being build due ordering;
- ${PN}-staticdev lacked the ${libdir} files.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/syslinux')
-rw-r--r-- | meta/recipes-devtools/syslinux/syslinux_4.03.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-devtools/syslinux/syslinux_4.03.bb b/meta/recipes-devtools/syslinux/syslinux_4.03.bb index 823465c543..2ab6878c4d 100644 --- a/meta/recipes-devtools/syslinux/syslinux_4.03.bb +++ b/meta/recipes-devtools/syslinux/syslinux_4.03.bb @@ -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" |