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 DD40715808B for ; Sun, 20 Mar 2022 00:05:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44DF7E085B; Sun, 20 Mar 2022 00:05:57 +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 A803AE082B for ; Sun, 20 Mar 2022 00:05:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2C70534348F for ; Sun, 20 Mar 2022 00:05:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8B876320 for ; Sun, 20 Mar 2022 00:05:53 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1647733639.f11148a08c5a6db13b042181a02cdabed244cbb6.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/palo/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/palo/palo-2.14.ebuild X-VCS-Directories: sys-boot/palo/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f11148a08c5a6db13b042181a02cdabed244cbb6 X-VCS-Branch: master Date: Sun, 20 Mar 2022 00:05:53 +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: e355e8f7-3cab-450b-b318-4b16dc688c51 X-Archives-Hash: db489760bb0870822902c433c2686a27 commit: f11148a08c5a6db13b042181a02cdabed244cbb6 Author: Sam James gentoo org> AuthorDate: Sat Mar 19 23:47:19 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 19 23:47:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f11148a0 sys-boot/palo: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James gentoo.org> sys-boot/palo/palo-2.14.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-boot/palo/palo-2.14.ebuild b/sys-boot/palo/palo-2.14.ebuild index 0a94f5679bf1..01f18fe777a1 100644 --- a/sys-boot/palo/palo-2.14.ebuild +++ b/sys-boot/palo/palo-2.14.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -19,7 +19,7 @@ PATCHES=( src_compile() { local target for target in '-C palo' '-C ipl' 'iplboot'; do - emake AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) ${target} + emake AR="$(tc-getAR)" CC="$(tc-getCC)" LD="$(tc-getLD)" ${target} done }