mirror of
https://git.yoctoproject.org/poky
synced 2026-03-28 01:02:21 +01:00
Switch from an alpha to a beta release. Drop two patches merged upstream. (From OE-Core rev: 6348b10b3cae7e1d3fc79d5018f43133a0cd56f0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
590 B
BlitzBasic
25 lines
590 B
BlitzBasic
require libtool-${PV}.inc
|
|
require remove-buildpaths.inc
|
|
|
|
FILESEXTRAPATHS =. "${FILE_DIRNAME}/libtool:"
|
|
|
|
SRC_URI += "file://fixinstall.patch"
|
|
|
|
inherit nativesdk
|
|
|
|
S = "${WORKDIR}/libtool-${PV}"
|
|
FILES:${PN} += "${datadir}/libtool/*"
|
|
|
|
do_install () {
|
|
autotools_do_install
|
|
install -d ${D}${bindir}/
|
|
install -m 0755 libtool ${D}${bindir}/
|
|
}
|
|
|
|
SYSROOT_PREPROCESS_FUNCS += "libtoolnativesdk_sysroot_preprocess"
|
|
|
|
libtoolnativesdk_sysroot_preprocess () {
|
|
install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/
|
|
install -m 755 ${D}${bindir}/libtool ${SYSROOT_DESTDIR}${bindir_crossscripts}/libtool
|
|
}
|