diff options
author | Brandon Low <lostlogic@gentoo.org> | 2002-10-01 06:42:30 +0000 |
---|---|---|
committer | Brandon Low <lostlogic@gentoo.org> | 2002-10-01 06:42:30 +0000 |
commit | 54546df256b679dda5ef00e9f927029d09cfdbfa (patch) | |
tree | a6e741f48308974c12407b3559afd0185789af80 /eclass | |
parent | Final -pre sorta like a -rc (diff) | |
download | historical-54546df256b679dda5ef00e9f927029d09cfdbfa.tar.gz historical-54546df256b679dda5ef00e9f927029d09cfdbfa.tar.bz2 historical-54546df256b679dda5ef00e9f927029d09cfdbfa.zip |
reformat patches.txt slightly
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kernel.eclass | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/eclass/kernel.eclass b/eclass/kernel.eclass index 23d6fe364819..95d30216f2a2 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.7 2002/10/01 00:39:48 lostlogic Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel.eclass,v 1.8 2002/10/01 06:42:30 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 @@ -81,7 +81,10 @@ kernel_src_install() { then dodir /usr/src echo ">>> Copying sources..." - cat ${WORKDIR}/${KV}/docs/* > patches.txt + for file in `ls -1 ${WORKDIR}/${KV}/docs/`; do + echo "XX_${file}*" >> patches.txt + cat ${WORKDIR}/${KV}/docs/${file} >> patches.txt + done dodoc patches.txt mv ${WORKDIR}/linux* ${D}/usr/src else |