diff options
author | Sam James <sam@gentoo.org> | 2022-03-20 00:16:31 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-20 00:16:31 +0000 |
commit | 60ac099df890a43d709d2af5c63456f6397e7d22 (patch) | |
tree | 31c094ef8f8c0727fe9bb5a551b874d135692309 /x11-wm/treewm | |
parent | x11-wm/goomwwm: [QA] fix tc-get* quoting (diff) | |
download | gentoo-60ac099df890a43d709d2af5c63456f6397e7d22.tar.gz gentoo-60ac099df890a43d709d2af5c63456f6397e7d22.tar.bz2 gentoo-60ac099df890a43d709d2af5c63456f6397e7d22.zip |
x11-wm/treewm: [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/treewm')
-rw-r--r-- | x11-wm/treewm/treewm-0.4.5-r2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-wm/treewm/treewm-0.4.5-r2.ebuild b/x11-wm/treewm/treewm-0.4.5-r2.ebuild index a94abe2ab166..e2f992385164 100644 --- a/x11-wm/treewm/treewm-0.4.5-r2.ebuild +++ b/x11-wm/treewm/treewm-0.4.5-r2.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 @@ -35,7 +35,7 @@ src_prepare() { src_compile() { # only compile treewm, not (x11-apps/){xprop,xkill} emake treewm \ - CXX=$(tc-getCXX) \ + CXX="$(tc-getCXX)" \ CCOPTIONS="${CFLAGS}" \ EXTRA_LDOPTIONS="${LDFLAGS}" \ PREFIX="/usr" ROOT="${D}" |