diff options
author | 2015-07-13 04:51:38 +0000 | |
---|---|---|
committer | 2015-07-13 04:51:38 +0000 | |
commit | 11342b7dc67895b6a28fde4c03b7c2e9ec60de58 (patch) | |
tree | 5f039b48b6845c7a906506656d44ef37daef1138 /app-shells | |
parent | Add notice for upstream changes wrt ~/.ssh/login-keys.d/ #554150 by walt. (diff) | |
download | gentoo-2-11342b7dc67895b6a28fde4c03b7c2e9ec60de58.tar.gz gentoo-2-11342b7dc67895b6a28fde4c03b7c2e9ec60de58.tar.bz2 gentoo-2-11342b7dc67895b6a28fde4c03b7c2e9ec60de58.zip |
Force /bin/bash when running old configure.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/bash/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/bash/bash-2.05b_p13.ebuild | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/app-shells/bash/ChangeLog b/app-shells/bash/ChangeLog index c39af755d68f..d15f47b9506d 100644 --- a/app-shells/bash/ChangeLog +++ b/app-shells/bash/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/bash # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.440 2015/07/13 04:30:45 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.441 2015/07/13 04:51:38 vapier Exp $ + + 13 Jul 2015; Mike Frysinger <vapier@gentoo.org> bash-2.05b_p13.ebuild: + Force /bin/bash when running old configure. *bash-4.4_alpha (13 Jul 2015) diff --git a/app-shells/bash/bash-2.05b_p13.ebuild b/app-shells/bash/bash-2.05b_p13.ebuild index 05319183d2cc..2b5f9546b4b0 100644 --- a/app-shells/bash/bash-2.05b_p13.ebuild +++ b/app-shells/bash/bash-2.05b_p13.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-2.05b_p13.ebuild,v 1.1 2014/10/19 20:31:56 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-2.05b_p13.ebuild,v 1.2 2015/07/13 04:51:38 vapier Exp $ EAPI="4" @@ -115,6 +115,10 @@ src_configure() { # ncurses in one or two small places :(. tc-export AR #444070 + # This old autoconf script does not re-exec itself properly and fails when + # /bin/sh is not bash. Rather than try to regen everything, just force the + # use of bash directly. + CONFIG_SHELL="/bin/bash" \ econf \ --with-installed-readline=. \ --with-curses \ |