diff options
author | John Mylchreest <johnm@gentoo.org> | 2004-12-06 22:23:17 +0000 |
---|---|---|
committer | John Mylchreest <johnm@gentoo.org> | 2004-12-06 22:23:17 +0000 |
commit | 2abf02c0f144609901b069b14af8102f97b8b7be (patch) | |
tree | 00c4961afe11daaf93f707c1a2b84bbd8c4ad244 /eclass | |
parent | bump bump bumpety bump (Manifest recommit) (diff) | |
download | gentoo-2-2abf02c0f144609901b069b14af8102f97b8b7be.tar.gz gentoo-2-2abf02c0f144609901b069b14af8102f97b8b7be.tar.bz2 gentoo-2-2abf02c0f144609901b069b14af8102f97b8b7be.zip |
Ok, last commit tonight, I promise! removing quotes from MODULE_NAMES loops.
Diffstat (limited to '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 ed80203bc47d..d7b9ea6b79a9 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.8 2004/12/06 22:05:08 johnm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.9 2004/12/06 22:23:17 johnm Exp $ # This eclass provides functions for compiling external kernel modules # from source. @@ -120,7 +120,7 @@ linux-mod_src_compile() { xarch="${ARCH}" unset ARCH - for i in "${MODULE_NAMES}" + for i in ${MODULE_NAMES} do module_temp="$(echo ${i} | sed -e "s:.*(\(.*\)):\1:")" modulename="${i/(*/}" @@ -139,7 +139,7 @@ linux-mod_src_compile() { linux-mod_src_install() { local modulename moduledir sourcedir module_temp i - for i in "${MODULE_NAMES}" + for i in ${MODULE_NAMES} do module_temp="$(echo ${i} | sed -e "s:.*(\(.*\)):\1:")" modulename="${i/(*/}" |