diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:09:58 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:09:58 +0000 |
commit | 41171495533cba636c4a11f12a9e23bd2327797e (patch) | |
tree | 794270c1a98c4199a52b1d32d613b19847d6d2df /media-gfx | |
parent | media-gfx/optipng: [QA] fix tc-get* quoting (diff) | |
download | gentoo-41171495533cba636c4a11f12a9e23bd2327797e.tar.gz gentoo-41171495533cba636c4a11f12a9e23bd2327797e.tar.bz2 gentoo-41171495533cba636c4a11f12a9e23bd2327797e.zip |
media-gfx/ttygif: [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 'media-gfx')
-rw-r--r-- | media-gfx/ttygif/ttygif-1.80_p20181218.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/media-gfx/ttygif/ttygif-1.80_p20181218.ebuild b/media-gfx/ttygif/ttygif-1.80_p20181218.ebuild index a88b74156eb8..299f1934a05b 100644 --- a/media-gfx/ttygif/ttygif-1.80_p20181218.ebuild +++ b/media-gfx/ttygif/ttygif-1.80_p20181218.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -26,7 +26,7 @@ RDEPEND=" media-gfx/imagemagick" src_compile() { - emake CC=$(tc-getCC) \ + emake CC="$(tc-getCC)" \ CFLAGS="${CFLAGS} -DVERSION='\"${PV}\"' -DOS_LINUX" \ LDFLAGS="${LDFLAGS}" } |