diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:15:45 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:15:45 +0000 |
commit | 1e0e87cee96e6a81c7f476ed4289859decec3fab (patch) | |
tree | f5fdf679d7be093dfb0b705cbb5b8da5a1689f8e /x11-plugins/asmem | |
parent | x11-plugins/wmrecord: [QA] fix tc-get* quoting (diff) | |
download | gentoo-1e0e87cee96e6a81c7f476ed4289859decec3fab.tar.gz gentoo-1e0e87cee96e6a81c7f476ed4289859decec3fab.tar.bz2 gentoo-1e0e87cee96e6a81c7f476ed4289859decec3fab.zip |
x11-plugins/asmem: [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/asmem')
-rw-r--r-- | x11-plugins/asmem/asmem-1.12-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-plugins/asmem/asmem-1.12-r1.ebuild b/x11-plugins/asmem/asmem-1.12-r1.ebuild index 097aecda86b1..b8aeeafc0159 100644 --- a/x11-plugins/asmem/asmem-1.12-r1.ebuild +++ b/x11-plugins/asmem/asmem-1.12-r1.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=6 @@ -30,7 +30,7 @@ src_configure() { } src_compile() { - emake CC=$(tc-getCC) LDFLAGS="${LDFLAGS}" + emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" } src_install() { |