diff options
author | David Seifert <soap@gentoo.org> | 2022-03-20 00:16:32 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-03-20 00:16:32 +0100 |
commit | 0cc26d43fe13b4eecbc5cd15fad5f10ec72cc1f6 (patch) | |
tree | 954c2a2c0c6a3fb933e1e5a52aea8a56cb3290ff /app-arch/hardlink | |
parent | app-arch/dpkg: quote $(tc-*) calls (diff) | |
download | gentoo-0cc26d43fe13b4eecbc5cd15fad5f10ec72cc1f6.tar.gz gentoo-0cc26d43fe13b4eecbc5cd15fad5f10ec72cc1f6.tar.bz2 gentoo-0cc26d43fe13b4eecbc5cd15fad5f10ec72cc1f6.zip |
app-arch/hardlink: quote $(tc-*) calls
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-arch/hardlink')
-rw-r--r-- | app-arch/hardlink/hardlink-0.3.2.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-arch/hardlink/hardlink-0.3.2.ebuild b/app-arch/hardlink/hardlink-0.3.2.ebuild index 04acefe5304e..41e4ede3f061 100644 --- a/app-arch/hardlink/hardlink-0.3.2.ebuild +++ b/app-arch/hardlink/hardlink-0.3.2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -38,5 +38,5 @@ src_prepare() { } src_compile() { - emake CC=$(tc-getCC) + emake CC="$(tc-getCC)" } |