diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:48:27 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:48:27 +0000 |
commit | 14488ed56a589c4d2803f8df4f5b0b14f86cb01f (patch) | |
tree | 1f0319b19608d9909e227cbb3688aab1f1c6fd00 /dev-libs/shhopt | |
parent | dev-libs/libowfat: [QA] fix tc-get* quoting (diff) | |
download | gentoo-14488ed56a589c4d2803f8df4f5b0b14f86cb01f.tar.gz gentoo-14488ed56a589c4d2803f8df4f5b0b14f86cb01f.tar.bz2 gentoo-14488ed56a589c4d2803f8df4f5b0b14f86cb01f.zip |
dev-libs/shhopt: [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 'dev-libs/shhopt')
-rw-r--r-- | dev-libs/shhopt/shhopt-1.1.7-r3.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-libs/shhopt/shhopt-1.1.7-r3.ebuild b/dev-libs/shhopt/shhopt-1.1.7-r3.ebuild index 3710e4d865d3..c1fd89d7f6c8 100644 --- a/dev-libs/shhopt/shhopt-1.1.7-r3.ebuild +++ b/dev-libs/shhopt/shhopt-1.1.7-r3.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 @@ -16,7 +16,7 @@ KEYWORDS="amd64 ppc x86" PATCHES=( "${FILESDIR}"/${P}-build.patch ) src_compile() { - emake CC=$(tc-getCC) + emake CC="$(tc-getCC)" } src_install() { |