mirror of
https://git.yoctoproject.org/poky
synced 2026-03-06 15:29:40 +01:00
The introduction of sstate and recipe specific sysroots made the configure prepends obsolete and unneeded. The compile prepend has been there for over a decade and is also likely obsolete. Remove the whole lot, we look into any issues that arise. (From OE-Core rev: d6a22998e47bcceee3fc3edc72eb2df2970dabfa) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
560 B
BlitzBasic
24 lines
560 B
BlitzBasic
require libtool-${PV}.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
|
|
}
|