diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:15:33 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:15:33 +0000 |
commit | fe1fa5e0054d389665aa261f6f8aa33ffa080973 (patch) | |
tree | 0212eaa1227cfa7f461d1fce95bad6a0de3ffb5f /x11-plugins/wmrecord | |
parent | x11-plugins/wmcube: [QA] fix tc-get* quoting (diff) | |
download | gentoo-fe1fa5e0054d389665aa261f6f8aa33ffa080973.tar.gz gentoo-fe1fa5e0054d389665aa261f6f8aa33ffa080973.tar.bz2 gentoo-fe1fa5e0054d389665aa261f6f8aa33ffa080973.zip |
x11-plugins/wmrecord: [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 'x11-plugins/wmrecord')
-rw-r--r-- | x11-plugins/wmrecord/wmrecord-1.0.5.3-r2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-plugins/wmrecord/wmrecord-1.0.5.3-r2.ebuild b/x11-plugins/wmrecord/wmrecord-1.0.5.3-r2.ebuild index 565cf6323752..2a7bb3927249 100644 --- a/x11-plugins/wmrecord/wmrecord-1.0.5.3-r2.ebuild +++ b/x11-plugins/wmrecord/wmrecord-1.0.5.3-r2.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 @@ -37,7 +37,7 @@ src_prepare() { } src_compile() { - emake CC=$(tc-getCC) CFLAGS="${CFLAGS} -Wall" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS} -Wall" } src_install() { |