From 0de58075a121965344c0d5473edfe83359a9365a Mon Sep 17 00:00:00 2001 From: Alex Legler Date: Sun, 8 Feb 2009 20:48:01 +0000 Subject: Quote variables. Thanks to maekke in bug 258197. --- eclass/gems.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'eclass/gems.eclass') 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 # Current Maintainer: Ruby Herd @@ -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 } -- cgit v1.2.3-65-gdbad