commit: 3c7a9208a73700c21411c1390f66bb68868a2479
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 20 00:24:17 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 20 00:24:17 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c7a9208
sys-devel/slibtool: [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-devel/slibtool/slibtool-0.5.34.ebuild | 4 ++--
sys-devel/slibtool/slibtool-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/sys-devel/slibtool/slibtool-0.5.34.ebuild
b/sys-devel/slibtool/slibtool-0.5.34.ebuild
index 589a18d68165..a25f2ba8e597 100644
--- a/sys-devel/slibtool/slibtool-0.5.34.ebuild
+++ b/sys-devel/slibtool/slibtool-0.5.34.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
@@ -29,7 +29,7 @@ SLOT="0"
src_configure() {
# Custom configure script (not generated by autoconf)
./configure \
- --compiler=$(tc-getCC) \
+ --compiler="$(tc-getCC)" \
--host=${CHOST} \
--prefix="${EPREFIX}"/usr \
|| die
diff --git a/sys-devel/slibtool/slibtool-9999.ebuild
b/sys-devel/slibtool/slibtool-9999.ebuild
index be4f199900aa..632175369588 100644
--- a/sys-devel/slibtool/slibtool-9999.ebuild
+++ b/sys-devel/slibtool/slibtool-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
@@ -29,7 +29,7 @@ SLOT="0"
src_configure() {
# Custom configure script (not generated by autoconf)
./configure \
- --compiler=$(tc-getCC) \
+ --compiler="$(tc-getCC)" \
--host=${CHOST} \
--prefix="${EPREFIX}"/usr \
|| die