diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2005-09-26 22:22:08 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2005-09-26 22:22:08 +0000 |
commit | bd9f315d592e22ac874248dbb81b7ae1e156ba10 (patch) | |
tree | 21ffe478b5abb7f41b289216f75134217f5af6dc /eclass | |
parent | - as far as anyone can tell there is no valid reason why we really need to fi... (diff) | |
download | gentoo-2-bd9f315d592e22ac874248dbb81b7ae1e156ba10.tar.gz gentoo-2-bd9f315d592e22ac874248dbb81b7ae1e156ba10.tar.bz2 gentoo-2-bd9f315d592e22ac874248dbb81b7ae1e156ba10.zip |
Fix find arguments.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/makeedit.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/makeedit.eclass b/eclass/makeedit.eclass index 67f2ab9c23a3..66d8d51362c7 100644 --- a/eclass/makeedit.eclass +++ b/eclass/makeedit.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/makeedit.eclass,v 1.10 2005/07/06 20:23:20 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/makeedit.eclass,v 1.11 2005/09/26 22:22:08 azarah Exp $ # # Author: Spider # @@ -20,7 +20,7 @@ edit_makefiles() { # We already add "-Wno-return-type -w" to compiler flags, so # no need to replace "-Wall" and "-Wreturn-type" with them. einfo "Parsing Makefiles ..." - find . -iname makefile -o -name \*.mk -o -name GNUmakefile -print0 | \ + find . \( -iname makefile -o -name \*.mk -o -name GNUmakefile \) -print0 | \ xargs -0 sed -i \ -e 's:-Wall::g' \ -e 's:-Wreturn-type::g' \ |