diff options
author | Mike Frysinger <vapier@gentoo.org> | 2017-02-21 17:37:48 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2017-02-21 17:45:17 -0500 |
commit | 63c613a904bf9ba1a0ad4d749ff94023b0d5b53e (patch) | |
tree | 9725863dd004cbed8d2ea0a38e1426a20bdfad9e /sys-devel/libtool | |
parent | sys-devel/libtool: mark 2.4.6-r2 arm64/m68k/s390/sh stable (diff) | |
download | gentoo-63c613a904bf9ba1a0ad4d749ff94023b0d5b53e.tar.gz gentoo-63c613a904bf9ba1a0ad4d749ff94023b0d5b53e.tar.bz2 gentoo-63c613a904bf9ba1a0ad4d749ff94023b0d5b53e.zip |
sys-devel/libtool: sync changes into live ebuild
Diffstat (limited to 'sys-devel/libtool')
-rw-r--r-- | sys-devel/libtool/libtool-9999.ebuild | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sys-devel/libtool/libtool-9999.ebuild b/sys-devel/libtool/libtool-9999.ebuild index e46a9feace7d..22a5d3c10437 100644 --- a/sys-devel/libtool/libtool-9999.ebuild +++ b/sys-devel/libtool/libtool-9999.ebuild @@ -1,8 +1,7 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Id$ -EAPI=5 +EAPI="5" LIBTOOLIZE="true" #225559 WANT_LIBTOOL="none" @@ -27,7 +26,8 @@ IUSE="vanilla" # Pull in libltdl directly until we convert packages to the new dep. RDEPEND="sys-devel/gnuconfig >=sys-devel/autoconf-2.69 - >=sys-devel/automake-1.13" + >=sys-devel/automake-1.13 + dev-libs/libltdl:0" DEPEND="${RDEPEND} app-arch/xz-utils" [[ ${PV} == "9999" ]] && DEPEND+=" sys-apps/help2man" @@ -65,6 +65,10 @@ src_configure() { # cause problems for people who switch /bin/sh on the fly to other # shells, so just force libtool to use /bin/bash all the time. export CONFIG_SHELL=/bin/bash + + # Do not bother hardcoding the full path to sed. Just rely on $PATH. #574550 + export ac_cv_path_SED=$(basename "$(type -P sed)") + ECONF_SOURCE=${S} econf --disable-ltdl-install } |