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 9274715808B for ; Sun, 20 Mar 2022 00:16:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3B1C9E0901; Sun, 20 Mar 2022 00:16:54 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0A968E08F3 for ; Sun, 20 Mar 2022 00:16:54 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 22D42342BFE for ; Sun, 20 Mar 2022 00:16:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 23B57350 for ; Sun, 20 Mar 2022 00:16:50 +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: <1647735333.fe1fa5e0054d389665aa261f6f8aa33ffa080973.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/wmrecord/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/wmrecord/wmrecord-1.0.5.3-r2.ebuild X-VCS-Directories: x11-plugins/wmrecord/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fe1fa5e0054d389665aa261f6f8aa33ffa080973 X-VCS-Branch: master Date: Sun, 20 Mar 2022 00:16:50 +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: d51668a8-b79c-4ada-91eb-80210548efc7 X-Archives-Hash: eefafb7cfd2d170a40912a95ce13453f commit: fe1fa5e0054d389665aa261f6f8aa33ffa080973 Author: Sam James gentoo org> AuthorDate: Sun Mar 20 00:15:33 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 20 00:15:33 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe1fa5e0 x11-plugins/wmrecord: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James gentoo.org> x11-plugins/wmrecord/wmrecord-1.0.5.3-r2.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x11-plugins/wmrecord/wmrecord-1.0.5.3-r2.ebuild b/x11-plugins/wmrecord/wmrecord-1.0.5.3-r2.ebuild index 565cf6323752..2a7bb3927249 100644 --- a/x11-plugins/wmrecord/wmrecord-1.0.5.3-r2.ebuild +++ b/x11-plugins/wmrecord/wmrecord-1.0.5.3-r2.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 @@ -37,7 +37,7 @@ src_prepare() { } src_compile() { - emake CC=$(tc-getCC) CFLAGS="${CFLAGS} -Wall" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall" } src_install() {