diff options
author | David Seifert <soap@gentoo.org> | 2022-03-20 00:16:30 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-03-20 00:16:30 +0100 |
commit | e318f463b20725798347a3813d267c9f1f3a4fca (patch) | |
tree | 587d16ae23d58a25a86017550fbea750ecb12dca /app-arch | |
parent | app-admin/su-exec: quote $(tc-*) calls (diff) | |
download | gentoo-e318f463b20725798347a3813d267c9f1f3a4fca.tar.gz gentoo-e318f463b20725798347a3813d267c9f1f3a4fca.tar.bz2 gentoo-e318f463b20725798347a3813d267c9f1f3a4fca.zip |
app-arch/bsdsfv: quote $(tc-*) calls
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-arch')
-rw-r--r-- | app-arch/bsdsfv/bsdsfv-1.18-r2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-arch/bsdsfv/bsdsfv-1.18-r2.ebuild b/app-arch/bsdsfv/bsdsfv-1.18-r2.ebuild index 9c59d15f47c6..1882a32eea98 100644 --- a/app-arch/bsdsfv/bsdsfv-1.18-r2.ebuild +++ b/app-arch/bsdsfv/bsdsfv-1.18-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=6 @@ -19,7 +19,7 @@ S=${WORKDIR}/${PN} PATCHES=( "${FILESDIR}"/${P}-64bit.patch ) src_compile() { - emake STRIP=true CC=$(tc-getCC) + emake STRIP=true CC="$(tc-getCC)" } src_install() { |