From 7110a43081d65fa2a669f0093792cb9390899fec Mon Sep 17 00:00:00 2001 From: Arthur Zamarin Date: Sat, 3 Sep 2022 14:38:15 +0300 Subject: [PATCH] ruby-ng.eclass: fix UnquotedVariable of EPREFIX Signed-off-by: Arthur Zamarin --- eclass/ruby-ng.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass index 6eceb4d5ba9fc..d6b3d2a0669a9 100644 --- a/eclass/ruby-ng.eclass +++ b/eclass/ruby-ng.eclass @@ -630,7 +630,7 @@ doruby() { [[ -z ${RUBY} ]] && die "\$RUBY is not set" ( # don't want to pollute calling env sitelibdir=$(ruby_rbconfig_value 'sitelibdir') - insinto ${sitelibdir#${EPREFIX}} + insinto "${sitelibdir#${EPREFIX}}" insopts -m 0644 doins "$@" ) || die "failed to install $@"