From: Mike Gilbert Date: Sun, 30 Aug 2015 01:47:02 +0000 (-0400) Subject: sys-libs/ncurses: Restrict has_version check to slot 0 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f5b7039a9bc8c63240340b947c80393e92e21afe;p=gentoo.git 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 --- diff --git a/sys-libs/ncurses/ncurses-6.0-r1.ebuild b/sys-libs/ncurses/ncurses-6.0-r1.ebuild index 977da6d83348..245d977593f1 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} \