diff options
author | Sam James <sam@gentoo.org> | 2022-03-25 23:43:09 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-26 00:00:28 +0000 |
commit | 62fcf0efcbaca1a1bca3008ab81a6d1049b3726a (patch) | |
tree | e41fab17084bffeb628eee7fa7d3839a86059866 /net-misc/scponly | |
parent | net-misc/netkit-timed: [QA] fix tc-get* quoting (diff) | |
download | gentoo-62fcf0efcbaca1a1bca3008ab81a6d1049b3726a.tar.gz gentoo-62fcf0efcbaca1a1bca3008ab81a6d1049b3726a.tar.bz2 gentoo-62fcf0efcbaca1a1bca3008ab81a6d1049b3726a.zip |
net-misc/scponly: [QA] fix tc-get* quoting
This can cause build problems for e.g. 32-bit (gcc -m32 ...)
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc/scponly')
-rw-r--r-- | net-misc/scponly/scponly-4.8-r7.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net-misc/scponly/scponly-4.8-r7.ebuild b/net-misc/scponly/scponly-4.8-r7.ebuild index 53455a9f74eb..db5e7ae99a4f 100644 --- a/net-misc/scponly/scponly-4.8-r7.ebuild +++ b/net-misc/scponly/scponly-4.8-r7.ebuild @@ -55,7 +55,7 @@ src_configure() { } src_compile() { - emake CC=$(tc-getCC) + emake CC="$(tc-getCC)" } src_install() { |