diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-09-03 14:38:15 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-09-12 22:14:30 +0300 |
commit | 7110a43081d65fa2a669f0093792cb9390899fec (patch) | |
tree | fe225988cef560d334ae210edf3ed0e266a8450a /eclass/ruby-ng.eclass | |
parent | haskell-cabal.eclass: fix UnquotedVariable of EPREFIX (diff) | |
download | gentoo-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/ruby-ng.eclass')
-rw-r--r-- | eclass/ruby-ng.eclass | 2 |
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 $@" |