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 E280515808C for ; Sun, 20 Mar 2022 00:53:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 78DB1E088C; Sun, 20 Mar 2022 00:53:36 +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 047CEE088C for ; Sun, 20 Mar 2022 00:53:36 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CE5673431B3 for ; Sun, 20 Mar 2022 00:53:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33FAAD0 for ; Sun, 20 Mar 2022 00:53:33 +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: <1647737125.630ad25aa869ba84f007e3a816a13e93621046f1.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/tclpython/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tcltk/tclpython/tclpython-5.0-r1.ebuild X-VCS-Directories: dev-tcltk/tclpython/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 630ad25aa869ba84f007e3a816a13e93621046f1 X-VCS-Branch: master Date: Sun, 20 Mar 2022 00:53:33 +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: 20dcba21-df3d-4f90-bf36-f4078abbe216 X-Archives-Hash: b73208e51778c659c2121a87edac16ac commit: 630ad25aa869ba84f007e3a816a13e93621046f1 Author: Sam James gentoo org> AuthorDate: Sun Mar 20 00:45:25 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sun Mar 20 00:45:25 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=630ad25a dev-tcltk/tclpython: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James gentoo.org> dev-tcltk/tclpython/tclpython-5.0-r1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-tcltk/tclpython/tclpython-5.0-r1.ebuild b/dev-tcltk/tclpython/tclpython-5.0-r1.ebuild index 92a9fda120d9..183afd5105c4 100644 --- a/dev-tcltk/tclpython/tclpython-5.0-r1.ebuild +++ b/dev-tcltk/tclpython/tclpython-5.0-r1.ebuild @@ -25,13 +25,13 @@ RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) src_compile() { - emake PKG_NAME=tclpython3 CC=$(tc-getCC) \ + emake PKG_NAME=tclpython3 CC="$(tc-getCC)" \ MYCFLAGS="${CFLAGS}" \ MYLDFLAGS="${LDFLAGS} $(python_get_library_path)" } src_test() { - emake PKG_NAME=tclpython3 CC=$(tc-getCC) test + emake PKG_NAME=tclpython3 CC="$(tc-getCC)" test } src_install() {