diff options
author | 2022-03-20 00:36:15 +0000 | |
---|---|---|
committer | 2022-03-20 00:36:15 +0000 | |
commit | 853ba82fbfe652a348a9b8da664f3a53d8dbe5dc (patch) | |
tree | 4b1ef123824ee546bac1a7757b98e85e4312e7c9 /dev-util/bloaty | |
parent | net-analyzer/ethloop: [QA] fix tc-get* quoting (diff) | |
download | gentoo-853ba82fbfe652a348a9b8da664f3a53d8dbe5dc.tar.gz gentoo-853ba82fbfe652a348a9b8da664f3a53d8dbe5dc.tar.bz2 gentoo-853ba82fbfe652a348a9b8da664f3a53d8dbe5dc.zip |
dev-util/bloaty: [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-util/bloaty')
-rw-r--r-- | dev-util/bloaty/bloaty-0_p20170420.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-util/bloaty/bloaty-0_p20170420.ebuild b/dev-util/bloaty/bloaty-0_p20170420.ebuild index e26da812ab42..16f023dc0f83 100644 --- a/dev-util/bloaty/bloaty-0_p20170420.ebuild +++ b/dev-util/bloaty/bloaty-0_p20170420.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -29,7 +29,7 @@ src_prepare() { } src_compile() { - CXX=$(tc-getCXX) emake + CXX="$(tc-getCXX)" emake } src_install() { |