diff options
author | David Seifert <soap@gentoo.org> | 2022-03-20 00:16:55 +0100 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2022-03-20 00:16:55 +0100 |
commit | 0a39536a3507a8c5e2a42173f05164d143d4a338 (patch) | |
tree | 1a3fc5d9b16b26e2a3c4d730cb039bf474644df9 /app-misc/ttyload | |
parent | app-misc/symlinks: quote $(tc-*) calls (diff) | |
download | gentoo-0a39536a3507a8c5e2a42173f05164d143d4a338.tar.gz gentoo-0a39536a3507a8c5e2a42173f05164d143d4a338.tar.bz2 gentoo-0a39536a3507a8c5e2a42173f05164d143d4a338.zip |
app-misc/ttyload: quote $(tc-*) calls
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'app-misc/ttyload')
-rw-r--r-- | app-misc/ttyload/ttyload-0.5.3-r1.ebuild | 4 | ||||
-rw-r--r-- | app-misc/ttyload/ttyload-0.5.3.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/app-misc/ttyload/ttyload-0.5.3-r1.ebuild b/app-misc/ttyload/ttyload-0.5.3-r1.ebuild index 9d52721f3c58..65919a1fbf44 100644 --- a/app-misc/ttyload/ttyload-0.5.3-r1.ebuild +++ b/app-misc/ttyload/ttyload-0.5.3-r1.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=8 @@ -32,7 +32,7 @@ src_prepare() { } src_compile() { - emake CC=$(tc-getCC) LDFLAGS="${LDFLAGS}" + emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" } src_install() { diff --git a/app-misc/ttyload/ttyload-0.5.3.ebuild b/app-misc/ttyload/ttyload-0.5.3.ebuild index a3d6358a8315..29fad0ff0a16 100644 --- a/app-misc/ttyload/ttyload-0.5.3.ebuild +++ b/app-misc/ttyload/ttyload-0.5.3.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 @@ -29,7 +29,7 @@ src_prepare() { } src_compile() { - emake CC=$(tc-getCC) LDFLAGS="${LDFLAGS}" + emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" } src_install() { |