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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6B87B15806E for ; Thu, 25 May 2023 16:01:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABCD1E0856; Thu, 25 May 2023 16:01:38 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 94672E0856 for ; Thu, 25 May 2023 16:01:38 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C6889340F83 for ; Thu, 25 May 2023 16:01:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2FF94A67 for ; Thu, 25 May 2023 16:01:36 +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: <1685030476.9f2b43ad6b84f8631525ebc1dcf62d51b3e86bf1.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/gpr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/gpr/gpr-23.0.0-r5.ebuild X-VCS-Directories: dev-ada/gpr/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 9f2b43ad6b84f8631525ebc1dcf62d51b3e86bf1 X-VCS-Branch: master Date: Thu, 25 May 2023 16:01:36 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 52059262-accd-4a43-9973-0d92e503bc21 X-Archives-Hash: 49f0a087126da231c57b71e0c3bc16ca commit: 9f2b43ad6b84f8631525ebc1dcf62d51b3e86bf1 Author: Alfredo Tupone gentoo org> AuthorDate: Thu May 25 16:00:28 2023 +0000 Commit: Alfredo Tupone gentoo org> CommitDate: Thu May 25 16:01:16 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f2b43ad dev-ada/gpr: respect CFLAGS/LDFLAGS on tools too Closes: https://bugs.gentoo.org/907055 Closes: https://bugs.gentoo.org/907056 Signed-off-by: Alfredo Tupone gentoo.org> dev-ada/gpr/gpr-23.0.0-r5.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-ada/gpr/gpr-23.0.0-r5.ebuild b/dev-ada/gpr/gpr-23.0.0-r5.ebuild index a34672aacd21..aa11d9152470 100644 --- a/dev-ada/gpr/gpr-23.0.0-r5.ebuild +++ b/dev-ada/gpr/gpr-23.0.0-r5.ebuild @@ -81,10 +81,11 @@ src_compile() { gprbuild -p -m -v -j$(makeopts_jobs) -XGPR2_BUILD=release \ -XLIBRARY_TYPE=${libtype} -XXMLADA_BUILD=${libtype} gpr2-tools.gpr \ - || die + -largs ${LDFLAGS} -cargs ${ADAFLAGS} || die gprbuild -p -m -v -j$(makeopts_jobs) -XGPR2_BUILD=release \ -XLIBRARY_TYPE=${libtype} -XXMLADA_BUILD=${libtype} \ - -XLANGKIT_SUPPORT_BUILD=${libtype} gpr2-name.gpr || die + -XLANGKIT_SUPPORT_BUILD=${libtype} gpr2-name.gpr \ + -largs ${LDFLAGS} -cargs ${ADAFLAGS} || die } src_install() {