commit:     b381e310090d0857c4894f4a7134584a73deb1b0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 18:49:25 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 18:50:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b381e310

sci-biology/blat: [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>

 sci-biology/blat/blat-34-r2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sci-biology/blat/blat-34-r2.ebuild 
b/sci-biology/blat/blat-34-r2.ebuild
index b07246356381..7c7004cf950e 100644
--- a/sci-biology/blat/blat-34-r2.ebuild
+++ b/sci-biology/blat/blat-34-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -30,7 +30,7 @@ src_compile() {
        tc-export AR CC
 
        export HOME="${S}"
-       export MACHTYPE=$(tc-arch)
+       export MACHTYPE="$(tc-arch)"
        [[ ${MACHTYPE} == "x86" ]] && MACHTYPE="i386"
 
        mkdir -p bin/${MACHTYPE} || die
@@ -38,7 +38,7 @@ src_compile() {
 }
 
 src_install() {
-       export MACHTYPE=$(tc-arch)
+       export MACHTYPE="$(tc-arch)"
        [[ ${MACHTYPE} == "x86" ]] && MACHTYPE="i386"
 
        dobin bin/${MACHTYPE}/*

Reply via email to