summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Legler <a3li@gentoo.org>2009-02-08 20:48:01 +0000
committerAlex Legler <a3li@gentoo.org>2009-02-08 20:48:01 +0000
commitc1f3014204a604e1c99ab771543bf097844251cc (patch)
tree1a007e1352defa9197a19ecff4011ea1dde6be1d /eclass/gems.eclass
parentVersion bump and ignore hidden dirs #245271 by Philipp Riegger. (diff)
downloadgentoo-2-c1f3014204a604e1c99ab771543bf097844251cc.tar.gz
gentoo-2-c1f3014204a604e1c99ab771543bf097844251cc.tar.bz2
gentoo-2-c1f3014204a604e1c99ab771543bf097844251cc.zip
Quote variables. Thanks to maekke in bug 258197.
Diffstat (limited to 'eclass/gems.eclass')
-rw-r--r--eclass/gems.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/gems.eclass b/eclass/gems.eclass
index a02d9efcb8a9..f40f9b010861 100644
--- a/eclass/gems.eclass
+++ b/eclass/gems.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/gems.eclass,v 1.23 2008/11/14 13:56:56 graaff Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/gems.eclass,v 1.24 2009/02/08 20:48:01 a3li Exp $
#
# Author: Rob Cakebread <pythonhead@gentoo.org>
# Current Maintainer: Ruby Herd <ruby@gentoo.org>
@@ -79,8 +79,8 @@ gems_src_install() {
if [[ -d "${D}/${GEMSDIR}/bin" ]] ; then
exeinto /usr/bin
- for exe in ${D}/${GEMSDIR}/bin/* ; do
- doexe ${exe}
+ for exe in "${D}"/${GEMSDIR}/bin/* ; do
+ doexe "${exe}"
done
fi
}