diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-05-31 17:07:26 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-06-04 12:04:52 +0100 |
| commit | 80d4ed954a49091ce3f79e195288ca4b13521bf2 (patch) | |
| tree | 4a66f975fdace57d7e99c0c72dce16ce4cb1b184 /meta/recipes-devtools/libtool/nativesdk-libtool_2.5.0.bb | |
| parent | 652e3028d9763aef318ff4587f2c21a8b280003f (diff) | |
| download | poky-80d4ed954a49091ce3f79e195288ca4b13521bf2.tar.gz | |
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/libtool/nativesdk-libtool_2.5.0.bb')
| -rw-r--r-- | meta/recipes-devtools/libtool/nativesdk-libtool_2.5.0.bb | 30 |
1 files changed, 30 insertions, 0 deletions
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 @@ | |||
| 1 | require libtool-${PV}.inc | ||
| 2 | |||
| 3 | FILESEXTRAPATHS =. "${FILE_DIRNAME}/libtool:" | ||
| 4 | |||
| 5 | SRC_URI += "file://fixinstall.patch" | ||
| 6 | |||
| 7 | inherit nativesdk | ||
| 8 | |||
| 9 | S = "${WORKDIR}/libtool-${PV}" | ||
| 10 | FILES:${PN} += "${datadir}/libtool/*" | ||
| 11 | |||
| 12 | do_configure:prepend () { | ||
| 13 | # Remove any existing libtool m4 since old stale versions would break | ||
| 14 | # any upgrade | ||
| 15 | rm -f ${STAGING_DATADIR}/aclocal/libtool.m4 | ||
| 16 | rm -f ${STAGING_DATADIR}/aclocal/lt*.m4 | ||
| 17 | } | ||
| 18 | |||
| 19 | do_install () { | ||
| 20 | autotools_do_install | ||
| 21 | install -d ${D}${bindir}/ | ||
| 22 | install -m 0755 libtool ${D}${bindir}/ | ||
| 23 | } | ||
| 24 | |||
| 25 | SYSROOT_PREPROCESS_FUNCS += "libtoolnativesdk_sysroot_preprocess" | ||
| 26 | |||
| 27 | libtoolnativesdk_sysroot_preprocess () { | ||
| 28 | install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/ | ||
| 29 | install -m 755 ${D}${bindir}/libtool ${SYSROOT_DESTDIR}${bindir_crossscripts}/libtool | ||
| 30 | } | ||
