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/netkit-timed/
Date: Sat, 26 Mar 2022 00:01:21
Message-Id: 1648252825.5bcac1c60f9db7425ffc258b35d9dc760d46760d.sam@gentoo
1 commit: 5bcac1c60f9db7425ffc258b35d9dc760d46760d
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Mar 25 23:42:46 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 26 00:00:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bcac1c6
7
8 net-misc/netkit-timed: [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/netkit-timed/netkit-timed-0.17-r10.ebuild | 4 ++--
15 1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/net-misc/netkit-timed/netkit-timed-0.17-r10.ebuild b/net-misc/netkit-timed/netkit-timed-0.17-r10.ebuild
18 index bde888f10c2d..8a5bc3d4f073 100644
19 --- a/net-misc/netkit-timed/netkit-timed-0.17-r10.ebuild
20 +++ b/net-misc/netkit-timed/netkit-timed-0.17-r10.ebuild
21 @@ -1,4 +1,4 @@
22 -# Copyright 1999-2016 Gentoo Foundation
23 +# Copyright 1999-2022 Gentoo Authors
24 # Distributed under the terms of the GNU General Public License v2
25
26 EAPI="6"
27 @@ -28,7 +28,7 @@ src_prepare() {
28 src_configure() {
29 # Note this is not an autoconf configure script. econf fails
30 append-flags -DCLK_TCK=CLOCKS_PER_SEC
31 - ./configure --prefix=/usr --with-c-compiler=$(tc-getCC) || die "bad configure"
32 + ./configure --prefix=/usr --with-c-compiler="$(tc-getCC)" || die "bad configure"
33 }
34
35 src_install() {