summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorJohn Mylchreest <johnm@gentoo.org>2006-03-03 20:57:15 +0000
committerJohn Mylchreest <johnm@gentoo.org>2006-03-03 20:57:15 +0000
commit3f3024aba375301764dd77ded02fec3cd829fa7e (patch)
tree183c893cb981cfb4544497d546d6c378f76c393e /eclass
parentAdded 1.02 to amd64 stable. (diff)
downloadgentoo-2-3f3024aba375301764dd77ded02fec3cd829fa7e.tar.gz
gentoo-2-3f3024aba375301764dd77ded02fec3cd829fa7e.tar.bz2
gentoo-2-3f3024aba375301764dd77ded02fec3cd829fa7e.zip
Fixing a stupid little bug.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/linux-mod.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass
index aa09b45a8f89..cf9da0b16afb 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.58 2006/02/08 12:57:52 brix Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.59 2006/03/03 20:57:15 johnm Exp $
# Description: This eclass is used to interface with linux-info in such a way
# to provide the functionality required and initial functions
@@ -256,7 +256,7 @@ remove_moduledb() {
if [[ -n $(grep ${CATEGORY}/${PN}-${PVR} ${MODULEDB_DIR}/moduledb) ]]; then
einfo "Removing ${CATEGORY}/${PN}-${PVR} from moduledb."
- sed -ie "/.*${CATEGORY}\/${P}.*/d" ${MODULEDB_DIR}/moduledb
+ sed -ie "/.*${CATEGORY}\/${PN}-${PVR}.*/d" ${MODULEDB_DIR}/moduledb
fi
}