diff options
author | David Seifert <soap@gentoo.org> | 2022-03-20 00:16:58 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-03-20 00:16:58 +0100 |
commit | 6f487c47cee7f2d24398a3f0d125edb994b26e80 (patch) | |
tree | c8f47ba2244ba988e8155eb2593ae9521b008017 /app-text/expander | |
parent | app-shells/yash: quote $(tc-*) calls (diff) | |
download | gentoo-6f487c47cee7f2d24398a3f0d125edb994b26e80.tar.gz gentoo-6f487c47cee7f2d24398a3f0d125edb994b26e80.tar.bz2 gentoo-6f487c47cee7f2d24398a3f0d125edb994b26e80.zip |
app-text/expander: quote $(tc-*) calls
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-text/expander')
-rw-r--r-- | app-text/expander/expander-2.0.5-r2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-text/expander/expander-2.0.5-r2.ebuild b/app-text/expander/expander-2.0.5-r2.ebuild index c1ddd2ee423e..6684a72038d5 100644 --- a/app-text/expander/expander-2.0.5-r2.ebuild +++ b/app-text/expander/expander-2.0.5-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 @@ -18,7 +18,7 @@ S="${WORKDIR}/${PN}" PATCHES=( "${FILESDIR}"/${P}-gentoo.patch ) src_compile() { - emake -C src CC=$(tc-getCC) + emake -C src CC="$(tc-getCC)" } src_install() { |