From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id CBE591384C0 for ; Fri, 28 Aug 2015 17:39:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E579142CE; Fri, 28 Aug 2015 17:39:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EBC61142CE for ; Fri, 28 Aug 2015 17:39:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C079A340B46 for ; Fri, 28 Aug 2015 17:39:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DF956165 for ; Fri, 28 Aug 2015 17:39:01 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1440783515.91e515ab11805360a4d8a69bc5e0dbeba189984d.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/ncurses/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/ncurses/ncurses-5.9-r101.ebuild sys-libs/ncurses/ncurses-6.0-r1.ebuild X-VCS-Directories: sys-libs/ncurses/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 91e515ab11805360a4d8a69bc5e0dbeba189984d X-VCS-Branch: master Date: Fri, 28 Aug 2015 17:39:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a935a3e3-be31-4d61-9d91-4d9d22b96f26 X-Archives-Hash: 9e34db1b76ece46c308cc48b8c19d019 commit: 91e515ab11805360a4d8a69bc5e0dbeba189984d Author: Mike Frysinger gentoo org> AuthorDate: Fri Aug 28 17:37:40 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Aug 28 17:38:35 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91e515ab sys-libs/ncurses: fix cross tic path test #558622 sys-libs/ncurses/ncurses-5.9-r101.ebuild | 4 ++-- sys-libs/ncurses/ncurses-6.0-r1.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-libs/ncurses/ncurses-5.9-r101.ebuild b/sys-libs/ncurses/ncurses-5.9-r101.ebuild index 00166f6..a90cf85 100644 --- a/sys-libs/ncurses/ncurses-5.9-r101.ebuild +++ b/sys-libs/ncurses/ncurses-5.9-r101.ebuild @@ -146,8 +146,8 @@ do_configure() { fi # See comments in src_configure. if [[ ${target} != "cross" ]] ; then - local tic_path="${WORKDIR}/cross/progs/tic" - [[ -d ${tic_path} ]] && export TIC_PATH=${tic_path} + local cross_path="${WORKDIR}/cross" + [[ -d ${cross_path} ]] && export TIC_PATH="${cross_path}/progs/tic" else conf+=( --with-progs ) fi diff --git a/sys-libs/ncurses/ncurses-6.0-r1.ebuild b/sys-libs/ncurses/ncurses-6.0-r1.ebuild index a8b1c1e..977da6d 100644 --- a/sys-libs/ncurses/ncurses-6.0-r1.ebuild +++ b/sys-libs/ncurses/ncurses-6.0-r1.ebuild @@ -159,8 +159,8 @@ do_configure() { fi # See comments in src_configure. if [[ ${target} != "cross" ]] ; then - local tic_path="${WORKDIR}/cross/progs/tic" - [[ -d ${tic_path} ]] && export TIC_PATH=${tic_path} + local cross_path="${WORKDIR}/cross" + [[ -d ${cross_path} ]] && export TIC_PATH="${cross_path}/progs/tic" fi # Force bash until upstream rebuilds the configure script with a newer