diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-17 18:00:05 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-03-23 12:13:49 +0000 |
commit | ff7b41573842a403c81f58bee41fc8163a9d7754 (patch) | |
tree | 942642ee97ef156870d3847cefd7fb4fe7aae49a /meta/recipes-devtools/libtool/libtool-2.4.7.inc | |
parent | 3d62a6cc5c7859a16358d73938752dc8ca4e51ea (diff) | |
download | poky-ff7b41573842a403c81f58bee41fc8163a9d7754.tar.gz |
libtool: Upgrade 2.4.6 -> 2.4.7
Libtool made a release after many years. Update to it, allowing us to drop two
backported patches. We also drop a performance optimistion patch since it is
too invasive to maintain separately.
(From OE-Core rev: b5d13cbdded0f71fd4b847066434d30e8a39c9ce)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/libtool/libtool-2.4.7.inc')
-rw-r--r-- | meta/recipes-devtools/libtool/libtool-2.4.7.inc | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-devtools/libtool/libtool-2.4.7.inc b/meta/recipes-devtools/libtool/libtool-2.4.7.inc new file mode 100644 index 0000000000..a07df720ac --- /dev/null +++ b/meta/recipes-devtools/libtool/libtool-2.4.7.inc | |||
@@ -0,0 +1,51 @@ | |||
1 | SUMMARY = "Generic library support script" | ||
2 | DESCRIPTION = "This is GNU libtool, a generic library support script. \ | ||
3 | Libtool hides the complexity of generating special library types \ | ||
4 | (such as shared libraries) behind a consistent interface." | ||
5 | HOMEPAGE = "http://www.gnu.org/software/libtool/libtool.html" | ||
6 | SECTION = "devel" | ||
7 | LICENSE = "GPL-2.0-only & LGPL-2.1-only" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ | ||
9 | file://libltdl/COPYING.LIB;md5=4fbd65380cdd255951079008b364516c " | ||
10 | |||
11 | SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}.tar.gz \ | ||
12 | file://0001-ltmain.in-Handle-trailing-slashes-on-install-command.patch \ | ||
13 | file://0002-libtool.m4-Rename-the-with-sysroot-option-to-avoid-c.patch \ | ||
14 | file://0003-ltmain.in-Add-missing-sysroot-to-library-path.patch \ | ||
15 | file://0004-ltmain.sh-Fix-sysroot-paths-being-encoded-into-RPATH.patch \ | ||
16 | file://0005-ltmain.in-Don-t-encode-RATHS-which-match-default-lin.patch \ | ||
17 | file://dont-depend-on-help2man.patch \ | ||
18 | file://0006-libtool.m4-Handle-as-a-sysroot-correctly.patch \ | ||
19 | file://nohardcodepaths.patch \ | ||
20 | file://0007-libtool-Fix-support-for-NIOS2-processor.patch \ | ||
21 | file://0008-libtool-Check-for-static-libs-for-internal-compiler-.patch \ | ||
22 | file://0009-Makefile.am-make-sure-autoheader-run-before-autoconf.patch \ | ||
23 | file://0010-Makefile.am-make-sure-autoheader-run-before-automake.patch \ | ||
24 | file://0011-ltmain.in-Handle-prefix-map-compiler-options-correct.patch \ | ||
25 | file://0012-libtool.m4-For-reproducibility-stop-encoding-hostnam.patch \ | ||
26 | file://0001-ltmain.in-Parse-additional-clang-options.patch \ | ||
27 | " | ||
28 | |||
29 | SRC_URI[sha256sum] = "04e96c2404ea70c590c546eba4202a4e12722c640016c12b9b2f1ce3d481e9a8" | ||
30 | |||
31 | do_compile:prepend () { | ||
32 | # Sometimes this file doesn't get rebuilt, force the issue | ||
33 | rm -f ${S}/build-aux/ltmain.sh | ||
34 | make build-aux/ltmain.sh | ||
35 | ./config.status | ||
36 | } | ||
37 | |||
38 | inherit autotools texinfo | ||
39 | EXTRA_AUTORECONF = "--exclude=libtoolize" | ||
40 | |||
41 | CACHED_CONFIGUREVARS += "ac_cv_path_GREP=grep" | ||
42 | |||
43 | DEPENDS = "libtool-native" | ||
44 | |||
45 | PACKAGES =+ "libltdl" | ||
46 | FILES:${PN} += "${datadir}/aclocal" | ||
47 | |||
48 | FILES:${PN}-dev:remove = "${datadir}/aclocal" | ||
49 | FILES:libltdl = "${libdir}/libltdl${SOLIBS}" | ||
50 | |||
51 | export CONFIG_SHELL="/bin/bash" | ||