diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-11-01 01:44:36 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-11-01 01:44:36 +0000 |
commit | 4ba631cbd2859fc86f29a22d1ca12a722902b737 (patch) | |
tree | 5835eb99b633f4c98d0f5b7df0a8cdf7ce48e9d2 /sys-devel/libtool | |
parent | Respect EPREFIX during install. (diff) | |
download | gentoo-2-4ba631cbd2859fc86f29a22d1ca12a722902b737.tar.gz gentoo-2-4ba631cbd2859fc86f29a22d1ca12a722902b737.tar.bz2 gentoo-2-4ba631cbd2859fc86f29a22d1ca12a722902b737.zip |
Fix cmdline_wrap test failures #384731 by Markus Oehme.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'sys-devel/libtool')
-rw-r--r-- | sys-devel/libtool/ChangeLog | 6 | ||||
-rw-r--r-- | sys-devel/libtool/files/libtool-2.4.3-test-cmdline_wrap.patch | 15 | ||||
-rw-r--r-- | sys-devel/libtool/libtool-2.4.3-r1.ebuild | 3 |
3 files changed, 22 insertions, 2 deletions
diff --git a/sys-devel/libtool/ChangeLog b/sys-devel/libtool/ChangeLog index b1d5889eecb2..9ba5edd15e0e 100644 --- a/sys-devel/libtool/ChangeLog +++ b/sys-devel/libtool/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-devel/libtool # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.230 2014/11/01 01:42:59 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.231 2014/11/01 01:44:36 vapier Exp $ + + 01 Nov 2014; Mike Frysinger <vapier@gentoo.org> + +files/libtool-2.4.3-test-cmdline_wrap.patch, libtool-2.4.3-r1.ebuild: + Fix cmdline_wrap test failures #384731 by Markus Oehme. 01 Nov 2014; Mike Frysinger <vapier@gentoo.org> libtool-2.4.3-r1.ebuild: Respect EPREFIX during install. diff --git a/sys-devel/libtool/files/libtool-2.4.3-test-cmdline_wrap.patch b/sys-devel/libtool/files/libtool-2.4.3-test-cmdline_wrap.patch new file mode 100644 index 000000000000..0d0dc48e99f0 --- /dev/null +++ b/sys-devel/libtool/files/libtool-2.4.3-test-cmdline_wrap.patch @@ -0,0 +1,15 @@ +https://bugs.gentoo.org/384731 + +https://lists.gnu.org/archive/html/bug-libtool/2014-10/msg00008.html + +--- a/tests/cmdline_wrap.at ++++ b/tests/cmdline_wrap.at +@@ -28,7 +28,7 @@ + AT_SETUP([Run tests with low max_cmd_len]) + AT_KEYWORDS([recursive expensive]) + dnl If we already have failures, then reruns will fail too! +-fail_list=`for f in ?/fail ??/fail ???/fail ????/fail; do echo $f; end` ++fail_list=`for f in ?/fail ??/fail ???/fail ????/fail; do echo $f; done` + AT_CHECK([test -z "$fail_list" || (exit 77)]) + m4_ifdef([AT_CAPTURE_FILE], + [AT_CAPTURE_FILE([testsuite.log])]) diff --git a/sys-devel/libtool/libtool-2.4.3-r1.ebuild b/sys-devel/libtool/libtool-2.4.3-r1.ebuild index ca337e748b3d..97f0872655b4 100644 --- a/sys-devel/libtool/libtool-2.4.3-r1.ebuild +++ b/sys-devel/libtool/libtool-2.4.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild,v 1.3 2014/11/01 01:42:59 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.4.3-r1.ebuild,v 1.4 2014/11/01 01:44:36 vapier Exp $ EAPI="4" @@ -52,6 +52,7 @@ src_prepare() { epatch "${FILESDIR}"/${PN}-2.4.3-use-linux-version-in-fbsd.patch #109105 epatch "${FILESDIR}"/${PN}-2.4.3-no-clean-gnulib.patch #527200 + epatch "${FILESDIR}"/${PN}-2.4.3-test-cmdline_wrap.patch #384731 pushd libltdl >/dev/null AT_NOELIBTOOLIZE=yes eautoreconf popd >/dev/null |