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 2146C15808B for ; Sun, 20 Mar 2022 18:51:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0A1D8E08D3; Sun, 20 Mar 2022 18:51:51 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E44F7E08CD for ; Sun, 20 Mar 2022 18:51:50 +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 127E7343108 for ; Sun, 20 Mar 2022 18:51:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 16370351 for ; Sun, 20 Mar 2022 18:51:47 +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: <1647802292.442508ffa429a842db078f06ca8c025ddd5c7479.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-physics/pythia/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-physics/pythia/pythia-8.2.45.ebuild X-VCS-Directories: sci-physics/pythia/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 442508ffa429a842db078f06ca8c025ddd5c7479 X-VCS-Branch: master Date: Sun, 20 Mar 2022 18:51:47 +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: af09f6b9-8ab6-48de-9853-94cc0b24fe16 X-Archives-Hash: 20bc44797d58b488ee38259eff0ba86e commit: 442508ffa429a842db078f06ca8c025ddd5c7479 Author: Sam James gentoo org> AuthorDate: Sun Mar 20 18:50:32 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 20 18:51:32 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=442508ff sci-physics/pythia: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James gentoo.org> sci-physics/pythia/pythia-8.2.45.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sci-physics/pythia/pythia-8.2.45.ebuild b/sci-physics/pythia/pythia-8.2.45.ebuild index 64f18f325b58..b46fed8fb5df 100644 --- a/sci-physics/pythia/pythia-8.2.45.ebuild +++ b/sci-physics/pythia/pythia-8.2.45.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 @@ -107,7 +107,7 @@ src_configure() { # homemade configure script ./configure \ --arch=Linux \ - --cxx=$(tc-getCXX) \ + --cxx="$(tc-getCXX)" \ --enable-shared \ --prefix="${EPREFIX}/usr" \ --prefix-lib="$(get_libdir)" \