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 AFD7D15808B for ; Sat, 26 Mar 2022 00:01:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CBABE08C4; Sat, 26 Mar 2022 00:01:19 +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 5C803E08C4 for ; Sat, 26 Mar 2022 00:01:19 +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 0306234350A for ; Sat, 26 Mar 2022 00:01:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D774034C for ; Sat, 26 Mar 2022 00:01:14 +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: <1648252834.b8945ea9d88b392111975fa2e8299e3a92b14bae.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/uftp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/uftp/uftp-4.10.1-r1.ebuild net-misc/uftp/uftp-5.0-r1.ebuild X-VCS-Directories: net-misc/uftp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b8945ea9d88b392111975fa2e8299e3a92b14bae X-VCS-Branch: master Date: Sat, 26 Mar 2022 00:01:14 +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: 0e662f7e-2d83-4901-ab10-e379618e6ad2 X-Archives-Hash: 1b3f2fba820c4795d0c2ec7f8f093a13 commit: b8945ea9d88b392111975fa2e8299e3a92b14bae Author: Sam James gentoo org> AuthorDate: Fri Mar 25 23:44:36 2022 +0000 Commit: Sam James gentoo org> CommitDate: Sat Mar 26 00:00:34 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8945ea9 net-misc/uftp: [QA] fix tc-get* quoting This can cause build problems for e.g. 32-bit (gcc -m32 ...) Signed-off-by: Sam James gentoo.org> net-misc/uftp/uftp-4.10.1-r1.ebuild | 7 ++++--- net-misc/uftp/uftp-5.0-r1.ebuild | 7 ++++--- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/net-misc/uftp/uftp-4.10.1-r1.ebuild b/net-misc/uftp/uftp-4.10.1-r1.ebuild index b85e46fc8aa2..cd876c63f416 100644 --- a/net-misc/uftp/uftp-4.10.1-r1.ebuild +++ b/net-misc/uftp/uftp-4.10.1-r1.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 @@ -28,8 +28,9 @@ PATCHES=( src_compile() { use ssl || local opt="NO_ENCRYPTION=1" - emake CC=$(tc-getCC) $opt uftp uftp_keymgt - use server && emake CC=$(tc-getCC) $opt uftpd uftpproxyd + + emake CC="$(tc-getCC)" ${opt} uftp uftp_keymgt + use server && emake CC="$(tc-getCC)" ${opt} uftpd uftpproxyd } src_install() { diff --git a/net-misc/uftp/uftp-5.0-r1.ebuild b/net-misc/uftp/uftp-5.0-r1.ebuild index 4df140fe4cbc..2720099e81a7 100644 --- a/net-misc/uftp/uftp-5.0-r1.ebuild +++ b/net-misc/uftp/uftp-5.0-r1.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 @@ -24,8 +24,9 @@ PATCHES=( src_compile() { use ssl || local opt="NO_ENCRYPTION=1" - emake CC=$(tc-getCC) $opt uftp uftp_keymgt - use server && emake CC=$(tc-getCC) $opt uftpd uftpproxyd + + emake CC="$(tc-getCC)" ${opt} uftp uftp_keymgt + use server && emake CC="$(tc-getCC)" ${opt} uftpd uftpproxyd } src_install() {