diff options
author | David Seifert <soap@gentoo.org> | 2022-03-20 00:16:48 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-03-20 00:16:48 +0100 |
commit | bef9cdc5787c3ade216a762c8b7283c9f02f6528 (patch) | |
tree | 1d42df61592aad5b0087894e0a0cb35bcbda1d1c /app-misc/fdupes | |
parent | app-misc/empty: quote $(tc-*) calls (diff) | |
download | gentoo-bef9cdc5787c3ade216a762c8b7283c9f02f6528.tar.gz gentoo-bef9cdc5787c3ade216a762c8b7283c9f02f6528.tar.bz2 gentoo-bef9cdc5787c3ade216a762c8b7283c9f02f6528.zip |
app-misc/fdupes: quote $(tc-*) calls
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-misc/fdupes')
-rw-r--r-- | app-misc/fdupes/fdupes-2.1.2.ebuild | 4 | ||||
-rw-r--r-- | app-misc/fdupes/fdupes-9999.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app-misc/fdupes/fdupes-2.1.2.ebuild b/app-misc/fdupes/fdupes-2.1.2.ebuild index 10f71ab708d5..8524e37a9eef 100644 --- a/app-misc/fdupes/fdupes-2.1.2.ebuild +++ b/app-misc/fdupes/fdupes-2.1.2.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 @@ -28,5 +28,5 @@ src_configure() { } src_compile() { - emake CC=$(tc-getCC) + emake CC="$(tc-getCC)" } diff --git a/app-misc/fdupes/fdupes-9999.ebuild b/app-misc/fdupes/fdupes-9999.ebuild index 9fc8d0597860..33ac17e5539a 100644 --- a/app-misc/fdupes/fdupes-9999.ebuild +++ b/app-misc/fdupes/fdupes-9999.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 @@ -37,5 +37,5 @@ src_configure() { } src_compile() { - emake CC=$(tc-getCC) + emake CC="$(tc-getCC)" } |