diff options
author | 2004-02-21 23:18:52 +0000 | |
---|---|---|
committer | 2004-02-21 23:18:52 +0000 | |
commit | a48021a4cbf5f282dd5e8e42b6b1e332af4dd106 (patch) | |
tree | f1171334764ba4b062dec6c2608fc83d9c28fd5d /eclass | |
parent | amd64 (Manifest recommit) (diff) | |
download | gentoo-2-a48021a4cbf5f282dd5e8e42b6b1e332af4dd106.tar.gz gentoo-2-a48021a4cbf5f282dd5e8e42b6b1e332af4dd106.tar.bz2 gentoo-2-a48021a4cbf5f282dd5e8e42b6b1e332af4dd106.zip |
Quotes messing up wildcards with multiple matches.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/xfree.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/xfree.eclass b/eclass/xfree.eclass index 2a0f8bb5b4f4..7781a4c753f0 100644 --- a/eclass/xfree.eclass +++ b/eclass/xfree.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/xfree.eclass,v 1.15 2004/02/21 22:58:26 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfree.eclass,v 1.16 2004/02/21 23:18:52 spyderous Exp $ # # Author: Seemant Kulleen <seemant@gentoo.org> # @@ -30,7 +30,7 @@ patch_exclude() { for PATCH_GROUP in ${@} do # Repress errors for non-matching patterns, they're ugly - for PATCH in "$(ls ${PATCHDIR}/${PATCH_GROUP}* 2> /dev/null)" + for PATCH in $(ls ${PATCHDIR}/${PATCH_GROUP}* 2> /dev/null) do if [ -a "${PATCH}" ] then |