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:40
Message-Id: 1663010070.867ec0b8696ffdbfe7f38e45a3d507639c629927.arthurzam@gentoo
1 commit: 867ec0b8696ffdbfe7f38e45a3d507639c629927
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 3 11:39:42 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=867ec0b8
7
8 ruby-ng-gnome2.eclass: fix UnquotedVariable of EPREFIX
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 eclass/ruby-ng-gnome2.eclass | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/eclass/ruby-ng-gnome2.eclass b/eclass/ruby-ng-gnome2.eclass
16 index 93ab89263593..487e3268e360 100644
17 --- a/eclass/ruby-ng-gnome2.eclass
18 +++ b/eclass/ruby-ng-gnome2.eclass
19 @@ -118,7 +118,7 @@ each_ruby_install() {
20 if [[ -e Makefile ]]; then
21 # Create the directories, or the package will create them as files.
22 local archdir=$(ruby_rbconfig_value "sitearchdir")
23 - dodir ${archdir#${EPREFIX}} /usr/$(get_libdir)/pkgconfig
24 + dodir "${archdir#${EPREFIX}}" /usr/$(get_libdir)/pkgconfig
25
26 emake DESTDIR="${D}" install
27 fi