diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-09-24 06:36:37 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-09-24 06:36:37 +0000 |
commit | db68b7cff014fd482ef7889964f744742d8abd90 (patch) | |
tree | b01c460e677c16f58a57fdf70bbbbafd86d1014a /eclass/kernel.eclass | |
parent | Fixed SED statement. Closes #8185 (diff) | |
download | gentoo-2-db68b7cff014fd482ef7889964f744742d8abd90.tar.gz gentoo-2-db68b7cff014fd482ef7889964f744742d8abd90.tar.bz2 gentoo-2-db68b7cff014fd482ef7889964f744742d8abd90.zip |
eclass.makequiet()
Diffstat (limited to 'eclass/kernel.eclass')
-rw-r--r-- | eclass/kernel.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kernel.eclass b/eclass/kernel.eclass index f11ae28c6407..195012b2aa41 100644 --- a/eclass/kernel.eclass +++ b/eclass/kernel.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kernel.eclass,v 1.3 2002/09/22 01:50:34 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel.eclass,v 1.4 2002/09/24 06:36:37 lostlogic Exp $ ECLASS=kernel EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst # This eclass contains the common functions to be used by all lostlogic @@ -45,7 +45,7 @@ kernel_src_unpack() { ./addpatches . ${WORKDIR}/linux-${KV} || die "Addpatches failed, bad KERNEL_ExCLUDE?" - find . -iname "*~" | xargs rm + find . -iname "*~" | xargs rm 2> /dev/null #fix silly permissions in tarball cd ${WORKDIR} |