summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2022-09-03 14:38:15 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2022-09-12 22:14:30 +0300
commit7110a43081d65fa2a669f0093792cb9390899fec (patch)
treefe225988cef560d334ae210edf3ed0e266a8450a /eclass
parenthaskell-cabal.eclass: fix UnquotedVariable of EPREFIX (diff)
downloadgentoo-7110a43081d65fa2a669f0093792cb9390899fec.tar.gz
gentoo-7110a43081d65fa2a669f0093792cb9390899fec.tar.bz2
gentoo-7110a43081d65fa2a669f0093792cb9390899fec.zip
ruby-ng.eclass: fix UnquotedVariable of EPREFIX
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ruby-ng.eclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass
index 6eceb4d5ba9f..d6b3d2a0669a 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 $@"