diff options
author | Mike Pagano <mpagano@gentoo.org> | 2009-07-15 17:21:11 +0000 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2009-07-15 17:21:11 +0000 |
commit | 042f7ac69487ab26e5adc480cc98a0fb8efc7de1 (patch) | |
tree | 8a1173e3698323da47751a6d27ce58bbb95f22f4 /eclass/linux-mod.eclass | |
parent | Fixed tiff patch for proper tiff handling also with higher resolution (from D... (diff) | |
download | gentoo-2-042f7ac69487ab26e5adc480cc98a0fb8efc7de1.tar.gz gentoo-2-042f7ac69487ab26e5adc480cc98a0fb8efc7de1.tar.bz2 gentoo-2-042f7ac69487ab26e5adc480cc98a0fb8efc7de1.zip |
Name module configuration files properly as per bug #277835. Thanks to MATSUU Takuto for the patch
Diffstat (limited to 'eclass/linux-mod.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 f4c460b51c9a..a4b2c9ac7b53 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.93 2008/11/05 12:00:19 dsd Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/linux-mod.eclass,v 1.94 2009/07/15 17:21:11 mpagano Exp $ # Author(s): John Mylchreest <johnm@gentoo.org>, # Stefan Schweizer <genstef@gentoo.org> @@ -506,7 +506,7 @@ generate_modulesd() { else insinto /etc/modules.d fi - newins ${module_config} ${currm_path//*\/} + newins ${module_config} ${currm_path//*\/}.conf # and install any documentation we might have. [[ -n ${module_docs} ]] && dodoc ${module_docs} |