diff options
author | John Mylchreest <johnm@gentoo.org> | 2005-01-28 17:33:17 +0000 |
---|---|---|
committer | John Mylchreest <johnm@gentoo.org> | 2005-01-28 17:33:17 +0000 |
commit | d8da21633953591b14bd5711b2140dc31eb2d468 (patch) | |
tree | 0223437f89de09c31787abed1e83029afe713f7e /eclass/linux-mod.eclass | |
parent | Stable on sparc (diff) | |
download | gentoo-2-d8da21633953591b14bd5711b2140dc31eb2d468.tar.gz gentoo-2-d8da21633953591b14bd5711b2140dc31eb2d468.tar.bz2 gentoo-2-d8da21633953591b14bd5711b2140dc31eb2d468.zip |
Changing detection of module.d/* file to see if the file is actually setting anything. if it isnt, dont bother running modules-update
Diffstat (limited to 'eclass/linux-mod.eclass')
-rw-r--r-- | eclass/linux-mod.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/linux-mod.eclass b/eclass/linux-mod.eclass index c3cb893dc46f..e139067756ed 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.24 2005/01/28 15:15:01 johnm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.25 2005/01/28 17:33:17 johnm Exp $ # Description: This eclass is used to interface with linux-info in such a way # to provide the functionality required and initial functions @@ -108,8 +108,8 @@ update_depmod() { } update_modules() { - if [ -x /sbin/modules-update -a -d ${D}/etc/modules.d/ ] ; - then + if [ -x /sbin/modules-update -a \ + -n "$(grep -v -e "^#" -e "^$" ${D}/etc/modules.d/*)" ] ; then ebegin "Updating modules.conf" /sbin/modules-update eend $? |