From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1444867-garchives=archives.gentoo.org@lists.gentoo.org> 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 2DE6E158094 for <garchives@archives.gentoo.org>; Sat, 8 Oct 2022 21:51:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 664DDE0827; Sat, 8 Oct 2022 21:51:00 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 496DEE0827 for <gentoo-commits@lists.gentoo.org>; Sat, 8 Oct 2022 21:51:00 +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 D944D3407E6 for <gentoo-commits@lists.gentoo.org>; Sat, 8 Oct 2022 21:50:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 428925E8 for <gentoo-commits@lists.gentoo.org>; Sat, 8 Oct 2022 21:50:57 +0000 (UTC) From: "Alfredo Tupone" <tupone@gentoo.org> 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" <tupone@gentoo.org> Message-ID: <1665265843.7aca1d862a618357d39cde57075845c5d891b0d0.tupone@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ada/libadalang/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ada/libadalang/libadalang-22.0.0.ebuild X-VCS-Directories: dev-ada/libadalang/ X-VCS-Committer: tupone X-VCS-Committer-Name: Alfredo Tupone X-VCS-Revision: 7aca1d862a618357d39cde57075845c5d891b0d0 X-VCS-Branch: master Date: Sat, 8 Oct 2022 21:50:57 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: bfbd2e17-e369-480a-8c5b-c103166948be X-Archives-Hash: 6ed172f533c4aed9d8468856ec5e8319 commit: 7aca1d862a618357d39cde57075845c5d891b0d0 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org> AuthorDate: Sat Oct 8 21:49:53 2022 +0000 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org> CommitDate: Sat Oct 8 21:50:43 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aca1d86 dev-ada/libadalang: fix build Closes: https://bugs.gentoo.org/832668 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org> dev-ada/libadalang/libadalang-22.0.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-ada/libadalang/libadalang-22.0.0.ebuild b/dev-ada/libadalang/libadalang-22.0.0.ebuild index f3aacee30406..a1987a48dfed 100644 --- a/dev-ada/libadalang/libadalang-22.0.0.ebuild +++ b/dev-ada/libadalang/libadalang-22.0.0.ebuild @@ -68,7 +68,7 @@ src_compile() { ${EPYTHON} manage.py build -v \ --build-mode "prod" \ -j$(makeopts_jobs) \ - --gargs "-cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS} -largs:C ${LDFLAGS}" \ + --gargs "-cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS} -largs ${LDFLAGS}" \ --library-types=${libType} || die GPR_PROJECT_PATH="${S}"/build \ gprbuild -P contrib/highlight/highlight.gpr \ @@ -77,7 +77,7 @@ src_compile() { -XLIBRARY_TYPE=relocatable \ -XXMLADA_BUILD=relocatable \ -cargs:C ${CFLAGS} -cargs:Ada ${ADAFLAGS} \ - -largs:C ${LDFLAGS} \ + -largs ${LDFLAGS} \ || die }