diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2010-04-07 04:20:46 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2010-04-07 04:20:46 +0000 |
commit | 3b1a02becfbff2841882222e9ad9926a07be1e76 (patch) | |
tree | 7047a3a152571be0614ece106b47d58f6d5b2097 /eclass/vim.eclass | |
parent | Revision bump to fix the init script. New behavior reports if it didn't start... (diff) | |
download | historical-3b1a02becfbff2841882222e9ad9926a07be1e76.tar.gz historical-3b1a02becfbff2841882222e9ad9926a07be1e76.tar.bz2 historical-3b1a02becfbff2841882222e9ad9926a07be1e76.zip |
Due to portage's environment filtering, variables that start with BASH_ cannot be used. As such, s/BASH_COMPLETION_NAME/BASHCOMPLETION_NAME/g for bug 312671
Diffstat (limited to 'eclass/vim.eclass')
-rw-r--r-- | eclass/vim.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index 9b8c3faf09ad..4ced88182c57 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.183 2010/03/28 02:23:19 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.184 2010/04/07 04:20:46 darkside Exp $ # Authors: # Jim Ramsay <i.am@gentoo.org> @@ -692,7 +692,7 @@ vim_pkg_postinst() { # Display bash-completion message if [[ ${MY_PN} == "vim-core" ]] ; then - export BASH_COMPLETION_NAME="xxd" + export BASHCOMPLETION_NAME="xxd" fi bash-completion_pkg_postinst |