Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/pipes/
Date: Sat, 26 Mar 2022 00:01:20
Message-Id: 1648252830.205d7c853707614d0f734ff32969b9f8f52f7faf.sam@gentoo
1 commit: 205d7c853707614d0f734ff32969b9f8f52f7faf
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 25 23:43:33 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 26 00:00:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=205d7c85
7
8 net-misc/pipes: [QA] fix tc-get* quoting
9
10 This can cause build problems for e.g. 32-bit (gcc -m32 ...)
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 net-misc/pipes/pipes-1.16.1-r1.ebuild | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/net-misc/pipes/pipes-1.16.1-r1.ebuild b/net-misc/pipes/pipes-1.16.1-r1.ebuild
18 index 11036b37088e..7a2acfb32695 100644
19 --- a/net-misc/pipes/pipes-1.16.1-r1.ebuild
20 +++ b/net-misc/pipes/pipes-1.16.1-r1.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 +# Copyright 1999-2022 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI=6
27 @@ -19,7 +19,7 @@ src_compile() {
28 # Prevent the build system from looking for dependencies
29 touch .depend || die
30
31 - emake CC=$(tc-getCC) OPTIM="${CFLAGS}" LDFLAGS="${CFLAGS} ${LDFLAGS}"
32 + emake CC="$(tc-getCC)" OPTIM="${CFLAGS}" LDFLAGS="${CFLAGS} ${LDFLAGS}"
33 }
34
35 src_install() {