diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2004-02-21 22:58:26 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2004-02-21 22:58:26 +0000 |
commit | dbd8774269a18f5654d5c92427936b1e2339b7a3 (patch) | |
tree | 1ae59c27ed0725105ec27852a4f6be7d7c0dbd3f /eclass | |
parent | amd64 (diff) | |
download | historical-dbd8774269a18f5654d5c92427936b1e2339b7a3.tar.gz historical-dbd8774269a18f5654d5c92427936b1e2339b7a3.tar.bz2 historical-dbd8774269a18f5654d5c92427936b1e2339b7a3.zip |
patch_exclude() was a little too general.
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 bd668deabdb1..2a0f8bb5b4f4 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.14 2004/02/21 22:33:43 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfree.eclass,v 1.15 2004/02/21 22:58:26 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 |