commit:     bf31037505e1189f223f4283f63cd37226964ce7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 00:00:17 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 00:00:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf310375

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 <AT> gentoo.org>

 sys-boot/aboot/aboot-1.0_pre20040408-r3.ebuild | 4 ++--
 sys-boot/aboot/aboot-2.0_pre20210801.ebuild    | 4 ++--
 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"

Reply via email to