diff options
author | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-03-08 20:46:12 +0000 |
---|---|---|
committer | Ciaran McCreesh <ciaranm@gentoo.org> | 2005-03-08 20:46:12 +0000 |
commit | 914a0fb10f09d58aaedcf093f363925aecb77879 (patch) | |
tree | bdb3905665c6b8fb975f4e4c4dc333787c5f8bd8 /eclass | |
parent | new release, mark 0.8.7 x86 (diff) | |
download | historical-914a0fb10f09d58aaedcf093f363925aecb77879.tar.gz historical-914a0fb10f09d58aaedcf093f363925aecb77879.tar.bz2 historical-914a0fb10f09d58aaedcf093f363925aecb77879.zip |
add in *vimrc_file_suffix
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vim.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index af2039578ed0..d634b03e368c 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.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/vim.eclass,v 1.100 2005/02/08 21:40:17 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.101 2005/03/08 20:46:12 ciaranm Exp $ # Authors: # Ryan Phillips <rphillips@gentoo.org> @@ -486,7 +486,7 @@ src_install() { # default vimrc is installed by vim-core since it applies to # both vim and gvim insinto /etc/vim/ - doins ${FILESDIR}/vimrc + newins ${FILESDIR}/vimrc${VIMRC_FILE_SUFFIX} vimrc if use livecd ; then # To save space, install only a subset of the files if we're on a @@ -524,7 +524,7 @@ src_install() { dosym gvim /usr/bin/rgview fi insinto /etc/vim - doins ${FILESDIR}/gvimrc + newins ${FILESDIR}/gvimrc${GVIMRC_FILE_SUFFIX} gvimrc # as of 6.3-r1, we install a desktop entry. bug #44633, and bug #68622 # for the nicer updated version. |