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 | 660827ffe2dbf6671c2f0aa704c4fc1943170d57 (patch) | |
tree | 0ce1b3a7203cc63e14cae1e32cf9dfc4a7887770 /eclass | |
parent | Fixed tiff patch for proper tiff handling also with higher resolution (from D... (diff) | |
download | historical-660827ffe2dbf6671c2f0aa704c4fc1943170d57.tar.gz historical-660827ffe2dbf6671c2f0aa704c4fc1943170d57.tar.bz2 historical-660827ffe2dbf6671c2f0aa704c4fc1943170d57.zip |
Name module configuration files properly as per bug #277835. Thanks to MATSUU Takuto for the patch
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 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} |