diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:16:20 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:16:20 +0000 |
commit | cd4380717fb68dfff2b1e89b48a76916684ce81f (patch) | |
tree | f1fe91370a72e12704259f4db1d63927a84b9850 /x11-wm | |
parent | x11-plugins/gkrellstock: [QA] fix tc-get* quoting (diff) | |
download | gentoo-cd4380717fb68dfff2b1e89b48a76916684ce81f.tar.gz gentoo-cd4380717fb68dfff2b1e89b48a76916684ce81f.tar.bz2 gentoo-cd4380717fb68dfff2b1e89b48a76916684ce81f.zip |
x11-wm/goomwwm: [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-wm')
-rw-r--r-- | x11-wm/goomwwm/goomwwm-1.0.0-r1.ebuild | 4 | ||||
-rw-r--r-- | x11-wm/goomwwm/goomwwm-9999.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/x11-wm/goomwwm/goomwwm-1.0.0-r1.ebuild b/x11-wm/goomwwm/goomwwm-1.0.0-r1.ebuild index db6647764c2d..f51897cf633f 100644 --- a/x11-wm/goomwwm/goomwwm-1.0.0-r1.ebuild +++ b/x11-wm/goomwwm/goomwwm-1.0.0-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 @@ -35,7 +35,7 @@ src_configure() { } src_compile() { - emake CC=$(tc-getCC) proto normal + emake CC="$(tc-getCC)" proto normal } src_install() { diff --git a/x11-wm/goomwwm/goomwwm-9999.ebuild b/x11-wm/goomwwm/goomwwm-9999.ebuild index f1597d56c856..7183c82c7e49 100644 --- a/x11-wm/goomwwm/goomwwm-9999.ebuild +++ b/x11-wm/goomwwm/goomwwm-9999.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 @@ -35,7 +35,7 @@ src_configure() { } src_compile() { - emake CC=$(tc-getCC) proto normal + emake CC="$(tc-getCC)" proto normal } src_install() { |