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 4B1A015802E for ; Thu, 27 Jun 2024 12:34:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E473E2AD0; Thu, 27 Jun 2024 12:34:08 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 69A20E2AD0 for ; Thu, 27 Jun 2024 12:34:08 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9AC1F340836 for ; Thu, 27 Jun 2024 12:34:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3BE791B05 for ; Thu, 27 Jun 2024 12:34:06 +0000 (UTC) From: "Eli Burch" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Burch" Message-ID: <1719491595.729ec65497d75496c40ae588586e04f4beaf377a.redawl@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-embedded/bcm2-utils/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-embedded/bcm2-utils/bcm2-utils-0.9.8.ebuild X-VCS-Directories: dev-embedded/bcm2-utils/ X-VCS-Committer: redawl X-VCS-Committer-Name: Eli Burch X-VCS-Revision: 729ec65497d75496c40ae588586e04f4beaf377a X-VCS-Branch: dev Date: Thu, 27 Jun 2024 12:34:06 +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: 483fb109-7f88-4e09-a3d3-7bd4c7e38bc7 X-Archives-Hash: 94e13bae0bfcbb24b1e78bddc23fedfc commit: 729ec65497d75496c40ae588586e04f4beaf377a Author: Eli Burch burchbytes com> AuthorDate: Thu Jun 27 12:32:34 2024 +0000 Commit: Eli Burch burchbytes com> CommitDate: Thu Jun 27 12:33:15 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=729ec654 dev-embedded/bcm2-utils: quote emake args Closes: https://bugs.gentoo.org/935000 Signed-off-by: Eli Burch burchbytes.com> dev-embedded/bcm2-utils/bcm2-utils-0.9.8.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-embedded/bcm2-utils/bcm2-utils-0.9.8.ebuild b/dev-embedded/bcm2-utils/bcm2-utils-0.9.8.ebuild index 60746ff4b..b3cc9dd2b 100644 --- a/dev-embedded/bcm2-utils/bcm2-utils-0.9.8.ebuild +++ b/dev-embedded/bcm2-utils/bcm2-utils-0.9.8.ebuild @@ -22,8 +22,8 @@ src_prepare(){ } src_compile(){ - emake CC=$(tc-getCC) CXX=$(tc-getCXX) CFLAGS=${CFLAGS} CXXFLAGS=${CXXFLAGS} \ - LDFLAGS=${LDFLAGS} + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \ + LDFLAGS="${LDFLAGS}" } src_install(){