commit:     13731e72e89c7fc0666527717b3536baaff457da
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 25 23:52:14 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 26 00:00:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13731e72

sys-apps/cinit: [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-apps/cinit/cinit-0.2.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/cinit/cinit-0.2.1.ebuild 
b/sys-apps/cinit/cinit-0.2.1.ebuild
index 252f62e217b9..1b16a694e944 100644
--- a/sys-apps/cinit/cinit-0.2.1.ebuild
+++ b/sys-apps/cinit/cinit-0.2.1.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
@@ -31,7 +31,7 @@ src_compile() {
 }
 
 src_install() {
-       emake LD=$(tc-getCC) DESTDIR="${D}" install
+       emake LD="$(tc-getCC)" DESTDIR="${D}" install
        rm -f "${D}"/sbin/{init,shutdown,reboot} || die
        dodoc Changelog CHANGES CREDITS README TODO
        use doc && dodoc -r doc

Reply via email to