diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2006-03-25 16:43:09 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2006-03-25 16:43:09 +0000 |
commit | 8960197efc5ff3b86bd69f6173bd2583a268ce49 (patch) | |
tree | 569f1e5a7ea5e2ff5060591240196e32449e0507 /eclass/linux-mod.eclass | |
parent | makemake2 support for improved engimail support (diff) | |
download | historical-8960197efc5ff3b86bd69f6173bd2583a268ce49.tar.gz historical-8960197efc5ff3b86bd69f6173bd2583a268ce49.tar.bz2 historical-8960197efc5ff3b86bd69f6173bd2583a268ce49.zip |
We need to inherit eutils before linux-info so that set_arch_to_kernel and set_arch_to_portage functions from linux-info are used instead of the ones in eutils. Fixes bug #127506.
Diffstat (limited to 'eclass/linux-mod.eclass')
-rw-r--r-- | eclass/linux-mod.eclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index 36337086d156..12c5fc8f636f 100644 --- a/eclass/linux-mod.eclass +++ b/eclass/linux-mod.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.60 2006/03/03 21:04:58 johnm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.61 2006/03/25 16:43:09 betelgeuse Exp $ # Description: This eclass is used to interface with linux-info in such a way # to provide the functionality required and initial functions @@ -78,8 +78,12 @@ # the full path to any associated # documents for $modulename +# The order of these is important as both of linux-info and eutils contain +# set_arch_to_kernel and set_arch_to_portage functions and the ones in eutils +# are deprecated in favor of the ones in linux-info. +# See http://bugs.gentoo.org/show_bug.cgi?id=127506 -inherit linux-info eutils +inherit eutils linux-info EXPORT_FUNCTIONS pkg_setup pkg_postinst src_install src_compile pkg_postrm IUSE="" # don't put pcmcia here, rather in the ebuilds that actually support pcmcia |