diff options
author | Benda Xu <heroxbd@gentoo.org> | 2017-01-16 00:28:08 +0900 |
---|---|---|
committer | Benda Xu <heroxbd@gentoo.org> | 2017-01-16 00:28:22 +0900 |
commit | e6af40e557dcdf2197139559bbd9c3233d5df6cb (patch) | |
tree | 1880d9f166cfcd089220663d0e3cacaadfa598d6 /sys-libs | |
parent | sys-libs/libcxx: Remove unnecessary LLVM_LIBDIR_SUFFIX (diff) | |
download | gentoo-e6af40e557dcdf2197139559bbd9c3233d5df6cb.tar.gz gentoo-e6af40e557dcdf2197139559bbd9c3233d5df6cb.tar.bz2 gentoo-e6af40e557dcdf2197139559bbd9c3233d5df6cb.zip |
sys-libs/ncurses: CONFIG_SHELL back to EPREFIX/bin/bash
${BASH} (outside prefix) breaks cross-eprefix, having
the resulting ncurses-config with non-prefix shebang.
The original rationale to use ${BASH} was handled by
the bootstrap script.
Reference: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=1307044f212d62
Package-Manager: portage-2.3.3
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/ncurses/ncurses-6.0-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-libs/ncurses/ncurses-6.0-r1.ebuild b/sys-libs/ncurses/ncurses-6.0-r1.ebuild index 0fb9c341ac63..ccdd8a564470 100644 --- a/sys-libs/ncurses/ncurses-6.0-r1.ebuild +++ b/sys-libs/ncurses/ncurses-6.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -182,7 +182,7 @@ do_configure() { # Force bash until upstream rebuilds the configure script with a newer # version of autotools. #545532 - CONFIG_SHELL=${BASH} \ + CONFIG_SHELL=${EPREFIX}/bin/bash \ ECONF_SOURCE=${S} \ econf "${conf[@]}" "$@" } |