Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: sys-libs/ncurses/
Date: Sun, 11 Oct 2015 10:35:48
Message-Id: 1444559722.1307044f212d6297c8f9b5f8d806e40c6fa76199.grobian@gentoo
1 commit: 1307044f212d6297c8f9b5f8d806e40c6fa76199
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 11 10:35:22 2015 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 11 10:35:22 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=1307044f
7
8 sys-libs/ncurses: use BASH since bin/bash may not exist yet (bootstrap)
9
10 Package-Manager: portage-2.2.20-prefix
11
12 sys-libs/ncurses/ncurses-6.0-r1.ebuild | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/sys-libs/ncurses/ncurses-6.0-r1.ebuild b/sys-libs/ncurses/ncurses-6.0-r1.ebuild
16 index 0b7ca5a..784f597 100644
17 --- a/sys-libs/ncurses/ncurses-6.0-r1.ebuild
18 +++ b/sys-libs/ncurses/ncurses-6.0-r1.ebuild
19 @@ -176,7 +176,7 @@ do_configure() {
20
21 # Force bash until upstream rebuilds the configure script with a newer
22 # version of autotools. #545532
23 - CONFIG_SHELL=${EPREFIX}/bin/bash \
24 + CONFIG_SHELL=${BASH} \
25 ECONF_SOURCE=${S} \
26 econf "${conf[@]}" "$@"
27 }