diff options
author | Mike Gilbert <floppym@gentoo.org> | 2015-08-29 21:47:02 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2015-08-29 21:47:15 -0400 |
commit | f5b7039a9bc8c63240340b947c80393e92e21afe (patch) | |
tree | ee5e590947ac26c9edaa5a24c9bbc6ea59409181 /sys-libs | |
parent | media-libs/freeglut: Fix USE=-static-libs. (diff) | |
download | gentoo-f5b7039a9bc8c63240340b947c80393e92e21afe.tar.gz gentoo-f5b7039a9bc8c63240340b947c80393e92e21afe.tar.bz2 gentoo-f5b7039a9bc8c63240340b947c80393e92e21afe.zip |
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
Diffstat (limited to 'sys-libs')
-rw-r--r-- | sys-libs/ncurses/ncurses-6.0-r1.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
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} \ |