From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1379593-garchives=archives.gentoo.org@lists.gentoo.org> 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 377B515808B for <garchives@archives.gentoo.org>; 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 41511E091A; Sat, 26 Mar 2022 00:18: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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 24325E091A for <gentoo-commits@lists.gentoo.org>; 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 3887D34350F for <gentoo-commits@lists.gentoo.org>; Sat, 26 Mar 2022 00:18:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95478317 for <gentoo-commits@lists.gentoo.org>; Sat, 26 Mar 2022 00:18:05 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1648253832.32baa464010d6850d59da343fad2fc132160365a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-client/w3mmee/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild X-VCS-Directories: www-client/w3mmee/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 32baa464010d6850d59da343fad2fc132160365a X-VCS-Branch: master Date: Sat, 26 Mar 2022 00:18:05 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ff68ae42-11d7-4c7b-8899-8b61e7cc167a X-Archives-Hash: 0a92aba3371d478715d790e524ee79e0 commit: 32baa464010d6850d59da343fad2fc132160365a Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Mar 26 00:17:12 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Mar 26 00:17:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32baa464 www-client/w3mmee: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James <sam <AT> gentoo.org> www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild index df4f61d15531..2a9701002838 100644 --- a/www-client/w3mmee/w3mmee-0.3.2_p24-r12.ebuild +++ b/www-client/w3mmee/w3mmee-0.3.2_p24-r12.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" @@ -48,8 +48,8 @@ HTML_DOCS=( 00INCOMPATIBLE.html ) src_prepare() { default - sed -i "s:/lib\([^a-z$]\):/$(get_libdir)\1:g" configure - sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile + sed -i "s:/lib\([^a-z$]\):/$(get_libdir)\1:g" configure || die + sed -i "/^AR=/s:ar:$(tc-getAR):" XMakefile || die } src_configure() { @@ -86,7 +86,7 @@ src_configure() { accept_lang=en EOF - env CC=$(tc-getCC) "${myuse[@]}" ./configure \ + env CC="$(tc-getCC)" "${myuse[@]}" ./configure \ -nonstop \ -prefix="${EPREFIX}/usr" \ -suffix=mee \