diff options
author | 2009-02-08 20:48:01 +0000 | |
---|---|---|
committer | 2009-02-08 20:48:01 +0000 | |
commit | 0de58075a121965344c0d5473edfe83359a9365a (patch) | |
tree | 87c4155bb8bc912fae7b47c146fa8a5b9bba3b4d /eclass/gems.eclass | |
parent | Version bump and ignore hidden dirs #245271 by Philipp Riegger. (diff) | |
download | historical-0de58075a121965344c0d5473edfe83359a9365a.tar.gz historical-0de58075a121965344c0d5473edfe83359a9365a.tar.bz2 historical-0de58075a121965344c0d5473edfe83359a9365a.zip |
Quote variables. Thanks to maekke in bug 258197.
Diffstat (limited to 'eclass/gems.eclass')
-rw-r--r-- | eclass/gems.eclass | 6 |
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 } |