diff options
author | 2002-09-22 01:50:34 +0000 | |
---|---|---|
committer | 2002-09-22 01:50:34 +0000 | |
commit | 47318158fc566b338597041633cfc5ee58ded5f6 (patch) | |
tree | 28fe81cc3285408a753e795184141f15b93fa6e3 /eclass | |
parent | openldap migration tools (diff) | |
download | historical-47318158fc566b338597041633cfc5ee58ded5f6.tar.gz historical-47318158fc566b338597041633cfc5ee58ded5f6.tar.bz2 historical-47318158fc566b338597041633cfc5ee58ded5f6.zip |
m00
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kernel.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/kernel.eclass b/eclass/kernel.eclass index 274bc1824436..f11ae28c6407 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.2 2002/09/22 01:17:06 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel.eclass,v 1.3 2002/09/22 01:50:34 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 @@ -33,7 +33,7 @@ fi kernel_exclude() { for mask in ${KERNEL_EXCLUDE}; do for patch in *${mask}*; do - echo "Excluding: ${patch}" + einfo "Excluding: ${patch}" rm ${patch} done done @@ -45,6 +45,8 @@ kernel_src_unpack() { ./addpatches . ${WORKDIR}/linux-${KV} || die "Addpatches failed, bad KERNEL_ExCLUDE?" + find . -iname "*~" | xargs rm + #fix silly permissions in tarball cd ${WORKDIR} chown -R 0.0 * |