diff options
author | Gilles Dartiguelongue <eva@gentoo.org> | 2008-02-10 14:47:14 +0000 |
---|---|---|
committer | Gilles Dartiguelongue <eva@gentoo.org> | 2008-02-10 14:47:14 +0000 |
commit | e55f27f01e9f5441b0d59efc4d61b1ab79cb3017 (patch) | |
tree | 9830e94b3fa6722766927ee13bef320f7b0d98eb /eclass/gnome2-utils.eclass | |
parent | stable on ppc wrt bug #208313 (diff) | |
download | historical-e55f27f01e9f5441b0d59efc4d61b1ab79cb3017.tar.gz historical-e55f27f01e9f5441b0d59efc4d61b1ab79cb3017.tar.bz2 historical-e55f27f01e9f5441b0d59efc4d61b1ab79cb3017.zip |
fixing quoting issues pointed out by maekke
Diffstat (limited to 'eclass/gnome2-utils.eclass')
-rw-r--r-- | eclass/gnome2-utils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/gnome2-utils.eclass b/eclass/gnome2-utils.eclass index fd773a09915b..334052ba56e1 100644 --- a/eclass/gnome2-utils.eclass +++ b/eclass/gnome2-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2-utils.eclass,v 1.6 2007/06/14 20:46:18 dang Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnome2-utils.eclass,v 1.7 2008/02/10 14:47:14 eva Exp $ # # gnome2-utils.eclass @@ -99,7 +99,7 @@ gnome2_icon_cache_update() { local retval=0 local fails=( ) - for dir in $(find ${ROOT}/usr/share/icons -maxdepth 1 -mindepth 1 -type d) + for dir in $(find "${ROOT}/usr/share/icons" -maxdepth 1 -mindepth 1 -type d) do if [[ -f "${dir}/index.theme" ]] ; then local rv=0 |