diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2004-02-21 23:33:07 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2004-02-21 23:33:07 +0000 |
commit | b395f3cc6c935812023090d623fdae16043f9a75 (patch) | |
tree | 06f3c6d4dca2596d49e113f69083b6b228af7d24 /eclass | |
parent | Move einfo for patch exclusion from xfree eclass to ebuild. (diff) | |
download | historical-b395f3cc6c935812023090d623fdae16043f9a75.tar.gz historical-b395f3cc6c935812023090d623fdae16043f9a75.tar.bz2 historical-b395f3cc6c935812023090d623fdae16043f9a75.zip |
einfo for patch_exclude() should be in the ebuild.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/xfree.eclass | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/eclass/xfree.eclass b/eclass/xfree.eclass index 7781a4c753f0..cfad1b238aa1 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.16 2004/02/21 23:18:52 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfree.eclass,v 1.17 2004/02/21 23:33:07 spyderous Exp $ # # Author: Seemant Kulleen <seemant@gentoo.org> # @@ -26,7 +26,6 @@ filter-patch() { patch_exclude() { # Exclude patches matching a pattern if they exist - einfo "Excluding patches..." for PATCH_GROUP in ${@} do # Repress errors for non-matching patterns, they're ugly @@ -40,7 +39,6 @@ patch_exclude() { fi done done - einfo "Done excluding patches" } |