diff options
author | Sam James <sam@gentoo.org> | 2022-03-19 23:43:57 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-19 23:43:57 +0000 |
commit | 25005fb69db2e75c46c968df0bd0cf091412e271 (patch) | |
tree | 7d937cacc73fb91cba7b7b58f1cc64214df79d6a /sys-fs/fatsort | |
parent | sys-fs/copyfs: [QA] fix tc-get* quoting (diff) | |
download | gentoo-25005fb69db2e75c46c968df0bd0cf091412e271.tar.gz gentoo-25005fb69db2e75c46c968df0bd0cf091412e271.tar.bz2 gentoo-25005fb69db2e75c46c968df0bd0cf091412e271.zip |
sys-fs/fatsort: [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 'sys-fs/fatsort')
-rw-r--r-- | sys-fs/fatsort/fatsort-1.6.3.622.ebuild | 4 | ||||
-rw-r--r-- | sys-fs/fatsort/fatsort-1.6.4.625.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys-fs/fatsort/fatsort-1.6.3.622.ebuild b/sys-fs/fatsort/fatsort-1.6.3.622.ebuild index c843233d12b1..2c171133543c 100644 --- a/sys-fs/fatsort/fatsort-1.6.3.622.ebuild +++ b/sys-fs/fatsort/fatsort-1.6.3.622.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -22,7 +22,7 @@ src_prepare() { src_compile() { emake \ - CC=$(tc-getCC) LD=$(tc-getCC) \ + CC="$(tc-getCC)" LD="$(tc-getCC)" \ CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ man } diff --git a/sys-fs/fatsort/fatsort-1.6.4.625.ebuild b/sys-fs/fatsort/fatsort-1.6.4.625.ebuild index 85bf5c3f3520..633230c83408 100644 --- a/sys-fs/fatsort/fatsort-1.6.4.625.ebuild +++ b/sys-fs/fatsort/fatsort-1.6.4.625.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -22,7 +22,7 @@ src_prepare() { src_compile() { emake \ - CC=$(tc-getCC) LD=$(tc-getCC) \ + CC="$(tc-getCC)" LD="$(tc-getCC)" \ CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ man } |