diff options
author | Thomas Bracht Laumann Jespersen <t@laumann.xyz> | 2022-06-08 09:57:28 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-06-16 17:30:25 +0100 |
commit | e4676e44adc3989dc9f9856e662ce9dfeb470a59 (patch) | |
tree | a0dea9d9c1998881ed60cc57e2ae0a0001811d41 /dev-lang/mlton | |
parent | dev-lang/gforth: fix unquoted variable EPREFIX (diff) | |
download | gentoo-e4676e44adc3989dc9f9856e662ce9dfeb470a59.tar.gz gentoo-e4676e44adc3989dc9f9856e662ce9dfeb470a59.tar.bz2 gentoo-e4676e44adc3989dc9f9856e662ce9dfeb470a59.zip |
dev-lang/mlton: fix unquoted variable S
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-lang/mlton')
-rw-r--r-- | dev-lang/mlton/mlton-20180207.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-lang/mlton/mlton-20180207.ebuild b/dev-lang/mlton/mlton-20180207.ebuild index 8ef03ed2eee9..69c52b386626 100644 --- a/dev-lang/mlton/mlton-20180207.ebuild +++ b/dev-lang/mlton/mlton-20180207.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 @@ -88,7 +88,7 @@ mlton_bootstrap_variant() { } mlton_bootstrap_build_dir() { - echo $(basename ${S})"-"$(mlton_bootstrap_variant) + echo "$(basename "${S}")-$(mlton_bootstrap_variant)" } mlton_bootstrap_bin_dir() { |