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 A6D6E15808B for ; Sun, 20 Mar 2022 18:43:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB849E086A; Sun, 20 Mar 2022 18:43: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 C2CA6E086A for ; Sun, 20 Mar 2022 18:43:57 +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 B674734307E for ; Sun, 20 Mar 2022 18:43:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 46B89320 for ; Sun, 20 Mar 2022 18:43:55 +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: <1647801811.6857d6b6b42825eac213df2ee6a920f4f5888818.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/nagios-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/nagios-core/nagios-core-4.4.6-r2.ebuild net-analyzer/nagios-core/nagios-core-4.4.6-r3.ebuild X-VCS-Directories: net-analyzer/nagios-core/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6857d6b6b42825eac213df2ee6a920f4f5888818 X-VCS-Branch: master Date: Sun, 20 Mar 2022 18:43:55 +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: 33d30b2d-c9a1-4379-9265-a7a284187b51 X-Archives-Hash: 3b67b0a58678a05e502d0dc5605ebbc7 commit: 6857d6b6b42825eac213df2ee6a920f4f5888818 Author: Sam James gentoo org> AuthorDate: Sun Mar 20 18:40:35 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 20 18:43:31 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6857d6b6 net-analyzer/nagios-core: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James gentoo.org> net-analyzer/nagios-core/nagios-core-4.4.6-r2.ebuild | 4 ++-- net-analyzer/nagios-core/nagios-core-4.4.6-r3.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/net-analyzer/nagios-core/nagios-core-4.4.6-r2.ebuild b/net-analyzer/nagios-core/nagios-core-4.4.6-r2.ebuild index d868bf041bd4..da7044dcdd6a 100644 --- a/net-analyzer/nagios-core/nagios-core-4.4.6-r2.ebuild +++ b/net-analyzer/nagios-core/nagios-core-4.4.6-r2.ebuild @@ -136,11 +136,11 @@ src_configure() { } src_compile() { - emake CC=$(tc-getCC) nagios + emake CC="$(tc-getCC)" nagios if use web; then # Only compile the CGIs/HTML when USE=web is set. - emake CC=$(tc-getCC) DESTDIR="${D}" cgis html + emake CC="$(tc-getCC)" DESTDIR="${D}" cgis html fi } diff --git a/net-analyzer/nagios-core/nagios-core-4.4.6-r3.ebuild b/net-analyzer/nagios-core/nagios-core-4.4.6-r3.ebuild index 2f3ebaec2193..e0583cea138b 100644 --- a/net-analyzer/nagios-core/nagios-core-4.4.6-r3.ebuild +++ b/net-analyzer/nagios-core/nagios-core-4.4.6-r3.ebuild @@ -132,11 +132,11 @@ src_configure() { } src_compile() { - emake CC=$(tc-getCC) nagios + emake CC="$(tc-getCC)" nagios if use web; then # Only compile the CGIs/HTML when USE=web is set. - emake CC=$(tc-getCC) cgis html + emake CC="$(tc-getCC)" cgis html fi }