Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Mon, 12 Sep 2022 19:14:41
Message-Id: 1663010070.7110a43081d65fa2a669f0093792cb9390899fec.arthurzam@gentoo
1 commit: 7110a43081d65fa2a669f0093792cb9390899fec
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 3 11:38:15 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 12 19:14:30 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7110a430
7
8 ruby-ng.eclass: fix UnquotedVariable of EPREFIX
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 eclass/ruby-ng.eclass | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/eclass/ruby-ng.eclass b/eclass/ruby-ng.eclass
16 index 6eceb4d5ba9f..d6b3d2a0669a 100644
17 --- a/eclass/ruby-ng.eclass
18 +++ b/eclass/ruby-ng.eclass
19 @@ -630,7 +630,7 @@ doruby() {
20 [[ -z ${RUBY} ]] && die "\$RUBY is not set"
21 ( # don't want to pollute calling env
22 sitelibdir=$(ruby_rbconfig_value 'sitelibdir')
23 - insinto ${sitelibdir#${EPREFIX}}
24 + insinto "${sitelibdir#${EPREFIX}}"
25 insopts -m 0644
26 doins "$@"
27 ) || die "failed to install $@"