diff options
author | Zack Welch <zwelch@gentoo.org> | 2003-03-09 07:42:59 +0000 |
---|---|---|
committer | Zack Welch <zwelch@gentoo.org> | 2003-03-09 07:42:59 +0000 |
commit | 5eac1f3a773f9488a1bb118517ae5503277dee58 (patch) | |
tree | af1ae77533bbfe03d59bcef1fa6ef997e189483d /eclass | |
parent | Added ppc to keywords (diff) | |
download | historical-5eac1f3a773f9488a1bb118517ae5503277dee58.tar.gz historical-5eac1f3a773f9488a1bb118517ae5503277dee58.tar.bz2 historical-5eac1f3a773f9488a1bb118517ae5503277dee58.zip |
fix x86ism for kernel headers install
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kernel.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/kernel.eclass b/eclass/kernel.eclass index a6e75ff9f013..0ff90ed1c8bd 100644 --- a/eclass/kernel.eclass +++ b/eclass/kernel.eclass @@ -1,9 +1,10 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kernel.eclass,v 1.18 2003/02/26 23:35:42 zwelch Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel.eclass,v 1.19 2003/03/09 07:42:59 zwelch Exp $ # # This eclass contains the common functions to be used by all lostlogic # based kernel ebuilds +# with error handling contributions by gerk, and small fixes by zwelch ECLASS=kernel EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst @@ -114,7 +115,7 @@ kernel_src_install() { cp -ax ${S}/include/linux/* ${D}/usr/include/linux rm -rf ${D}/usr/include/linux/modules dodir /usr/include/asm - cp -ax ${S}/include/asm-i386/* ${D}/usr/include/asm + cp -ax ${S}/include/asm/* ${D}/usr/include/asm fi } |