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 0C78515808B for ; Sat, 26 Mar 2022 00:18:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E84FE08A8; Sat, 26 Mar 2022 00:18:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 19EE1E08A8 for ; Sat, 26 Mar 2022 00:18: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 3845B343505 for ; Sat, 26 Mar 2022 00:18:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A91FB33A for ; Sat, 26 Mar 2022 00:18:05 +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: <1648253855.a79198a24b463fb3881c3eb97f2963ed4a18824e.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/restartd/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/restartd/restartd-0.2.2-r1.ebuild X-VCS-Directories: sys-apps/restartd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a79198a24b463fb3881c3eb97f2963ed4a18824e X-VCS-Branch: master Date: Sat, 26 Mar 2022 00:18:05 +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: 20dcb343-f5f6-4e7f-86d0-c6e3b3fd32b1 X-Archives-Hash: 92899c6817673278025e43400dbcc77d commit: a79198a24b463fb3881c3eb97f2963ed4a18824e Author: Sam James gentoo org> AuthorDate: Sat Mar 26 00:17:35 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 26 00:17:35 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a79198a2 sys-apps/restartd: [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-apps/restartd/restartd-0.2.2-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys-apps/restartd/restartd-0.2.2-r1.ebuild b/sys-apps/restartd/restartd-0.2.2-r1.ebuild index 6f78d10eb3a3..63a0de4222ca 100644 --- a/sys-apps/restartd/restartd-0.2.2-r1.ebuild +++ b/sys-apps/restartd/restartd-0.2.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -22,7 +22,7 @@ src_prepare() { } src_compile() { - emake CC=$(tc-getCC) C_ARGS="${CFLAGS}" + emake CC="$(tc-getCC)" C_ARGS="${CFLAGS}" } src_install() {