From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 39921139694 for ; Sun, 19 Mar 2017 15:35:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1395721C075; Sun, 19 Mar 2017 15:35:29 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E716A21C075 for ; Sun, 19 Mar 2017 15:35:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7811333BE32 for ; Sun, 19 Mar 2017 15:35:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3DFC36DBE for ; Sun, 19 Mar 2017 15:35:26 +0000 (UTC) From: "Alfredo Tupone" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alfredo Tupone" Message-ID: <1489937701.b90f535aaff939bf70e6761a81e1f3a577c34c9d.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/gnat-gpl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/gnat-gpl/gnat-gpl-2016.ebuild X-VCS-Directories: dev-lang/gnat-gpl/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: b90f535aaff939bf70e6761a81e1f3a577c34c9d X-VCS-Branch: master Date: Sun, 19 Mar 2017 15:35:26 +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: 34de9a00-938d-4197-86df-c1748b6eba75 X-Archives-Hash: dfd77b5c6fa4d627237a2dcc9cd04bac commit: b90f535aaff939bf70e6761a81e1f3a577c34c9d Author: Tupone Alfredo gentoo org> AuthorDate: Sun Mar 19 15:34:39 2017 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Sun Mar 19 15:35:01 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b90f535a dev-lang/gnat-gpl: filtering flag (needed for bootstrap) Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-lang/gnat-gpl/gnat-gpl-2016.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-lang/gnat-gpl/gnat-gpl-2016.ebuild b/dev-lang/gnat-gpl/gnat-gpl-2016.ebuild index 6fe66cc08c1..83c7683a0e4 100644 --- a/dev-lang/gnat-gpl/gnat-gpl-2016.ebuild +++ b/dev-lang/gnat-gpl/gnat-gpl-2016.ebuild @@ -59,6 +59,7 @@ pkg_setup() { else GCC=${ADA:-$(tc-getCC)} fi + CC=${GCC} local base=$(basename ${GCC}) GNATMAKE="${base/gcc/gnatmake}" GNATBIND="${base/gcc/gnatbind}" @@ -123,6 +124,10 @@ src_prepare() { } src_configure() { + local trueGCC_BRANCH_VER=${GCC_BRANCH_VER} + GCC_BRANCH_VER=$(gcc-version) + downgrade_arch_flags + GCC_BRANCH_VER=${trueGCC_BRANCH_VER} toolchain_src_configure \ --enable-languages=ada \ --disable-libada \