From 80d4ed954a49091ce3f79e195288ca4b13521bf2 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 31 May 2024 17:07:26 +0100 Subject: libtool: 2.4.7 -> 2.5.0 Whilst this is an alpha release, it makes sense for us to stay close to upstream. We can drop a lot of merged patches which is great to see. During testing, one bug showed up, particularly on mip64 due to an issue with FILECMD being changed to use AC_CHECK_PROG incorredly. A patch has been added for that and sent upstream. (From OE-Core rev: d572297c5810fb248af633014eac96f8ea0a739e) Signed-off-by: Richard Purdie --- .../libtool/nativesdk-libtool_2.5.0.bb | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 meta/recipes-devtools/libtool/nativesdk-libtool_2.5.0.bb (limited to 'meta/recipes-devtools/libtool/nativesdk-libtool_2.5.0.bb') diff --git a/meta/recipes-devtools/libtool/nativesdk-libtool_2.5.0.bb b/meta/recipes-devtools/libtool/nativesdk-libtool_2.5.0.bb new file mode 100644 index 0000000000..86c55ded7b --- /dev/null +++ b/meta/recipes-devtools/libtool/nativesdk-libtool_2.5.0.bb @@ -0,0 +1,30 @@ +require libtool-${PV}.inc + +FILESEXTRAPATHS =. "${FILE_DIRNAME}/libtool:" + +SRC_URI += "file://fixinstall.patch" + +inherit nativesdk + +S = "${WORKDIR}/libtool-${PV}" +FILES:${PN} += "${datadir}/libtool/*" + +do_configure:prepend () { + # Remove any existing libtool m4 since old stale versions would break + # any upgrade + rm -f ${STAGING_DATADIR}/aclocal/libtool.m4 + rm -f ${STAGING_DATADIR}/aclocal/lt*.m4 +} + +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 +} -- cgit v1.2.3-54-g00ecf