diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:00:17 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:00:17 +0000 |
commit | bf31037505e1189f223f4283f63cd37226964ce7 (patch) | |
tree | 4d6bb3983d1aa61c68bc33b2c5cf6b04a4c73b5c | |
parent | games-engines/residualvm: [QA] fix tc-get* quoting (diff) | |
download | gentoo-bf31037505e1189f223f4283f63cd37226964ce7.tar.gz gentoo-bf31037505e1189f223f4283f63cd37226964ce7.tar.bz2 gentoo-bf31037505e1189f223f4283f63cd37226964ce7.zip |
sys-boot/aboot: [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>
-rw-r--r-- | sys-boot/aboot/aboot-1.0_pre20040408-r3.ebuild | 4 | ||||
-rw-r--r-- | sys-boot/aboot/aboot-2.0_pre20210801.ebuild | 4 | ||||
-rw-r--r-- | sys-boot/aboot/aboot-9999.ebuild | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys-boot/aboot/aboot-1.0_pre20040408-r3.ebuild b/sys-boot/aboot/aboot-1.0_pre20040408-r3.ebuild index 94524795ae06..80ae29b8a244 100644 --- a/sys-boot/aboot/aboot-1.0_pre20040408-r3.ebuild +++ b/sys-boot/aboot/aboot-1.0_pre20040408-r3.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 @@ -48,7 +48,7 @@ src_prepare() { src_compile() { # too many problems with parallel building - emake -j1 AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) + emake -j1 AR="$(tc-getAR)" CC="$(tc-getCC)" LD="$(tc-getLD)" } src_install() { diff --git a/sys-boot/aboot/aboot-2.0_pre20210801.ebuild b/sys-boot/aboot/aboot-2.0_pre20210801.ebuild index 925430679b65..0cb5a272325e 100644 --- a/sys-boot/aboot/aboot-2.0_pre20210801.ebuild +++ b/sys-boot/aboot/aboot-2.0_pre20210801.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 @@ -24,7 +24,7 @@ SLOT="0" BDEPEND="app-text/docbook-sgml-utils" src_compile() { - emake AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) \ + emake AR="$(tc-getAR)" CC="$(tc-getCC)" LD="$(tc-getLD)" \ all netabootwrap einfo "Building man pages" diff --git a/sys-boot/aboot/aboot-9999.ebuild b/sys-boot/aboot/aboot-9999.ebuild index 2e29e829936e..494ceb2d395e 100644 --- a/sys-boot/aboot/aboot-9999.ebuild +++ b/sys-boot/aboot/aboot-9999.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 @@ SLOT="0" BDEPEND="app-text/docbook-sgml-utils" src_compile() { - emake AR=$(tc-getAR) CC=$(tc-getCC) LD=$(tc-getLD) \ + emake AR="$(tc-getAR)" CC="$(tc-getCC)" LD="$(tc-getLD)" \ all netabootwrap einfo "Building man pages" |