diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:36:38 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:36:38 +0000 |
commit | b520d783261bdc41b7bf8d3cc7c8124b0228bdd9 (patch) | |
tree | 6970110a06d1150b0a0257087d6f1b1fd56759f6 /dev-util/btyacc | |
parent | dev-util/bloaty: [QA] fix tc-get* quoting (diff) | |
download | gentoo-b520d783261bdc41b7bf8d3cc7c8124b0228bdd9.tar.gz gentoo-b520d783261bdc41b7bf8d3cc7c8124b0228bdd9.tar.bz2 gentoo-b520d783261bdc41b7bf8d3cc7c8124b0228bdd9.zip |
dev-util/btyacc: [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/btyacc')
-rw-r--r-- | dev-util/btyacc/btyacc-3.0-r4.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-util/btyacc/btyacc-3.0-r4.ebuild b/dev-util/btyacc/btyacc-3.0-r4.ebuild index 750243f22758..a8c99b5e9c30 100644 --- a/dev-util/btyacc/btyacc-3.0-r4.ebuild +++ b/dev-util/btyacc/btyacc-3.0-r4.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 @@ src_prepare() { } src_compile() { - emake CC=$(tc-getCC) + emake CC="$(tc-getCC)" } src_install() { |