diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-09-03 14:39:42 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-09-12 22:14:30 +0300 |
commit | 867ec0b8696ffdbfe7f38e45a3d507639c629927 (patch) | |
tree | be461e19dd970b7b6d0672ce567b9d4b14684a10 /eclass | |
parent | ruby-ng.eclass: fix UnquotedVariable of EPREFIX (diff) | |
download | gentoo-867ec0b8696ffdbfe7f38e45a3d507639c629927.tar.gz gentoo-867ec0b8696ffdbfe7f38e45a3d507639c629927.tar.bz2 gentoo-867ec0b8696ffdbfe7f38e45a3d507639c629927.zip |
ruby-ng-gnome2.eclass: fix UnquotedVariable of EPREFIX
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ruby-ng-gnome2.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/ruby-ng-gnome2.eclass b/eclass/ruby-ng-gnome2.eclass index 93ab89263593..487e3268e360 100644 --- a/eclass/ruby-ng-gnome2.eclass +++ b/eclass/ruby-ng-gnome2.eclass @@ -118,7 +118,7 @@ each_ruby_install() { if [[ -e Makefile ]]; then # Create the directories, or the package will create them as files. local archdir=$(ruby_rbconfig_value "sitearchdir") - dodir ${archdir#${EPREFIX}} /usr/$(get_libdir)/pkgconfig + dodir "${archdir#${EPREFIX}}" /usr/$(get_libdir)/pkgconfig emake DESTDIR="${D}" install fi |