diff options
author | Sam James <sam@gentoo.org> | 2022-03-25 23:52:47 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-26 00:00:50 +0000 |
commit | 1f886284f68f9cbdd1298d391e44c023dcd728eb (patch) | |
tree | 639b7f858086e1857cc39ec9e78d1cd19df0ecb7 /sys-boot | |
parent | sys-apps/cinit: [QA] fix tc-get* quoting (diff) | |
download | gentoo-1f886284f68f9cbdd1298d391e44c023dcd728eb.tar.gz gentoo-1f886284f68f9cbdd1298d391e44c023dcd728eb.tar.bz2 gentoo-1f886284f68f9cbdd1298d391e44c023dcd728eb.zip |
sys-boot/arcload: [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-boot')
-rw-r--r-- | sys-boot/arcload/arcload-0.50-r3.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys-boot/arcload/arcload-0.50-r3.ebuild b/sys-boot/arcload/arcload-0.50-r3.ebuild index 3646caa62a10..5374983af6f3 100644 --- a/sys-boot/arcload/arcload-0.50-r3.ebuild +++ b/sys-boot/arcload/arcload-0.50-r3.ebuild @@ -62,7 +62,7 @@ src_compile() { # on the offchance that we're cross-compiling. echo -e "" einfo ">>> Building the 'wreckoff' utility with $(tc-getBUILD_CC) ..." - emake CC=$(tc-getBUILD_CC) tools_clean tools + emake CC="$(tc-getBUILD_CC)" tools_clean tools # 32bit copy (sashARCS for IP22/IP32) echo -e "" |