diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:01:29 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:01:29 +0000 |
commit | ac20808c6e7f72f0714aba3c50de0a829db759b0 (patch) | |
tree | 8dc9c8c3c46454012d750d4d289b52b322223d98 /www-misc | |
parent | dev-libs/pmdk: [QA] fix tc-get* quoting (diff) | |
download | gentoo-ac20808c6e7f72f0714aba3c50de0a829db759b0.tar.gz gentoo-ac20808c6e7f72f0714aba3c50de0a829db759b0.tar.bz2 gentoo-ac20808c6e7f72f0714aba3c50de0a829db759b0.zip |
www-misc/visitors: [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 'www-misc')
-rw-r--r-- | www-misc/visitors/visitors-0.7-r2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www-misc/visitors/visitors-0.7-r2.ebuild b/www-misc/visitors/visitors-0.7-r2.ebuild index 19963571fecc..8e41c2d0dac7 100644 --- a/www-misc/visitors/visitors-0.7-r2.ebuild +++ b/www-misc/visitors/visitors-0.7-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -30,7 +30,7 @@ src_prepare() { src_compile() { emake \ - CC=$(tc-getCC) \ + CC="$(tc-getCC)" \ CFLAGS="${CFLAGS} -Wall -W" \ DEBUG="" } |