commit: f5b7039a9bc8c63240340b947c80393e92e21afe
Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 30 01:47:02 2015 +0000
Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
CommitDate: Sun Aug 30 01:47:15 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5b7039a
sys-libs/ncurses: Restrict has_version check to slot 0
Otherwise, we match against sys-libs/ncurses-6.0:5/6, which does not
include the tic command.
Package-Manager: portage-2.2.20
sys-libs/ncurses/ncurses-6.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys-libs/ncurses/ncurses-6.0-r1.ebuild
b/sys-libs/ncurses/ncurses-6.0-r1.ebuild
index 977da6d..245d977 100644
--- a/sys-libs/ncurses/ncurses-6.0-r1.ebuild
+++ b/sys-libs/ncurses/ncurses-6.0-r1.ebuild
@@ -67,7 +67,7 @@ src_configure() {
# This comes up when cross-compiling, doing multilib builds, upgrading,
# or installing for the first time. Build a local copy of tic whenever
# the host version isn't available. #249363 #557598
- if ! ROOT=/ has_version "~sys-libs/${P}" ; then
+ if ! ROOT=/ has_version "~sys-libs/${P}:0" ; then
# We can't re-use the multilib BUILD_DIR because we run outside
of it.
BUILD_DIR="${WORKDIR}" \
CHOST=${CBUILD} \