diff options
author | 2003-03-09 07:42:59 +0000 | |
---|---|---|
committer | 2003-03-09 07:42:59 +0000 | |
commit | 9099cb6a7538fb4eaf0aefd4f5b77468b6d98aa0 (patch) | |
tree | 18c8bf1dbe805f7788d5b9c7e7a2e634e2a4a113 /eclass | |
parent | Added ppc to keywords (diff) | |
download | gentoo-2-9099cb6a7538fb4eaf0aefd4f5b77468b6d98aa0.tar.gz gentoo-2-9099cb6a7538fb4eaf0aefd4f5b77468b6d98aa0.tar.bz2 gentoo-2-9099cb6a7538fb4eaf0aefd4f5b77468b6d98aa0.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 } |