diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:47:41 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:47:41 +0000 |
commit | 6baa862f05d6c45396a62840b2ab2eb678101fcd (patch) | |
tree | 8d80f31f1fd89d13f5454f611b789bebcca036b2 /dev-libs/libowfat | |
parent | dev-tcltk/tclpython: [QA] fix tc-get* quoting (diff) | |
download | gentoo-6baa862f05d6c45396a62840b2ab2eb678101fcd.tar.gz gentoo-6baa862f05d6c45396a62840b2ab2eb678101fcd.tar.bz2 gentoo-6baa862f05d6c45396a62840b2ab2eb678101fcd.zip |
dev-libs/libowfat: [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 'dev-libs/libowfat')
-rw-r--r-- | dev-libs/libowfat/libowfat-0.32-r1.ebuild | 4 | ||||
-rw-r--r-- | dev-libs/libowfat/libowfat-0.32-r5.ebuild | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/dev-libs/libowfat/libowfat-0.32-r1.ebuild b/dev-libs/libowfat/libowfat-0.32-r1.ebuild index 77774d4f7f6d..c1eedcac7645 100644 --- a/dev-libs/libowfat/libowfat-0.32-r1.ebuild +++ b/dev-libs/libowfat/libowfat-0.32-r1.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="7" @@ -25,7 +25,7 @@ pkg_setup() { src_compile() { emake \ - CC=$(tc-getCC) \ + CC="$(tc-getCC)" \ CFLAGS="-I. ${CFLAGS}" \ DIET="${EPREFIX}/usr/bin/diet -Os" \ prefix="${EPREFIX}/usr" \ diff --git a/dev-libs/libowfat/libowfat-0.32-r5.ebuild b/dev-libs/libowfat/libowfat-0.32-r5.ebuild index 6dbdd3e205c5..da8af4daacc6 100644 --- a/dev-libs/libowfat/libowfat-0.32-r5.ebuild +++ b/dev-libs/libowfat/libowfat-0.32-r5.ebuild @@ -39,9 +39,9 @@ src_prepare() { src_compile() { emake \ - CC=$(tc-getCC) \ - AR=$(tc-getAR) \ - RANLIB=$(tc-getRANLIB) \ + CC="$(tc-getCC)" \ + AR="$(tc-getAR)" \ + RANLIB="$(tc-getRANLIB)" \ CFLAGS="-I. ${CFLAGS}" \ DIET="${EPREFIX}/usr/bin/diet -Os" \ prefix="${EPREFIX}/usr" \ |