diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:24:17 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:24:17 +0000 |
commit | 3c7a9208a73700c21411c1390f66bb68868a2479 (patch) | |
tree | 38833f6349519978ca70796ac19f144626011f8e /sys-devel | |
parent | media-video/mplayer-sh: drop 0.8.6-r2 (diff) | |
download | gentoo-3c7a9208a73700c21411c1390f66bb68868a2479.tar.gz gentoo-3c7a9208a73700c21411c1390f66bb68868a2479.tar.bz2 gentoo-3c7a9208a73700c21411c1390f66bb68868a2479.zip |
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@gentoo.org>
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/slibtool/slibtool-0.5.34.ebuild | 4 | ||||
-rw-r--r-- | 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 |