diff options
author | 2006-02-08 12:49:29 +0000 | |
---|---|---|
committer | 2006-02-08 12:49:29 +0000 | |
commit | 13f9b118ada308ebda6f991de8744b8c8c393316 (patch) | |
tree | 2b5368869c058ba51c5bd9458fca9739d91bb6a1 /eclass | |
parent | Bump to 4.0 (bug #116742), add src_test. (diff) | |
download | gentoo-2-13f9b118ada308ebda6f991de8744b8c8c393316.tar.gz gentoo-2-13f9b118ada308ebda6f991de8744b8c8c393316.tar.bz2 gentoo-2-13f9b118ada308ebda6f991de8744b8c8c393316.zip |
Fixed bug #122101.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/linux-mod.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index 0e3f24c638c8..6a61ee731091 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.56 2005/12/07 23:10:22 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.57 2006/02/08 12:49:29 brix Exp $ # Description: This eclass is used to interface with linux-info in such a way # to provide the functionality required and initial functions @@ -533,7 +533,7 @@ linux-mod_src_install() { einfo "Installing ${modulename} module" cd ${objdir} || die "${objdir} does not exist" - insinto ${ROOT}lib/modules/${KV_FULL}/${libdir} + insinto /lib/modules/${KV_FULL}/${libdir} doins ${modulename}.${KV_OBJ} || die "doins ${modulename}.${KV_OBJ} failed" cd ${OLDPWD} |