summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-06-28 16:37:48 +0000
committerMike Frysinger <vapier@gentoo.org>2009-06-28 16:37:48 +0000
commite4097843ca5d0f3096edbafb696e07199f2fc0b2 (patch)
tree2b346333b6c17c45a1b633a2e7beb05bdfeda5d6 /sys-devel/libtool
parentVersion bump. (diff)
downloadgentoo-2-e4097843ca5d0f3096edbafb696e07199f2fc0b2.tar.gz
gentoo-2-e4097843ca5d0f3096edbafb696e07199f2fc0b2.tar.bz2
gentoo-2-e4097843ca5d0f3096edbafb696e07199f2fc0b2.zip
Keep libtool from using /bin/sh even if it is bash so people can change on the fly without needing to re-emerge libtool.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'sys-devel/libtool')
-rw-r--r--sys-devel/libtool/ChangeLog8
-rw-r--r--sys-devel/libtool/libtool-2.2.6a.ebuild10
2 files changed, 14 insertions, 4 deletions
diff --git a/sys-devel/libtool/ChangeLog b/sys-devel/libtool/ChangeLog
index 351b1b4e2d15..c1cadbe7a27b 100644
--- a/sys-devel/libtool/ChangeLog
+++ b/sys-devel/libtool/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-devel/libtool
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.141 2008/11/28 22:41:19 ulm Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/ChangeLog,v 1.142 2009/06/28 16:37:48 vapier Exp $
+
+ 28 Jun 2009; Mike Frysinger <vapier@gentoo.org> libtool-2.2.6a.ebuild:
+ Keep libtool from using /bin/sh even if it is bash so people can change on
+ the fly without needing to re-emerge libtool.
28 Nov 2008; Ulrich Mueller <ulm@gentoo.org>
+files/2.2.6a/libtool-2.2.6a-gnuinfo.patch, libtool-2.2.6a.ebuild:
diff --git a/sys-devel/libtool/libtool-2.2.6a.ebuild b/sys-devel/libtool/libtool-2.2.6a.ebuild
index fa5c5e593d92..6fa268a1d836 100644
--- a/sys-devel/libtool/libtool-2.2.6a.ebuild
+++ b/sys-devel/libtool/libtool-2.2.6a.ebuild
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.2.6a.ebuild,v 1.3 2008/11/28 22:41:19 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/libtool/libtool-2.2.6a.ebuild,v 1.4 2009/06/28 16:37:48 vapier Exp $
LIBTOOLIZE="true" #225559
inherit eutils autotools
@@ -37,6 +37,12 @@ src_unpack() {
cd ..
eautoreconf
fi
+
+ # the libtool script uses bash code in it and at configure time, tries
+ # to find a bash shell. if /bin/sh is bash, it uses that. this can
+ # 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
}
src_install() {