diff options
author | Mike Kelly <pioto@gentoo.org> | 2007-05-14 20:04:07 +0000 |
---|---|---|
committer | Mike Kelly <pioto@gentoo.org> | 2007-05-14 20:04:07 +0000 |
commit | d20bad7a351d8f1ce2808e847a0a21fd1608e244 (patch) | |
tree | e9b6346e53674c363fa5c90af0888f33fbda2279 /eclass | |
parent | Kill vimball. It's in vim7 (oops). (diff) | |
download | gentoo-2-d20bad7a351d8f1ce2808e847a0a21fd1608e244.tar.gz gentoo-2-d20bad7a351d8f1ce2808e847a0a21fd1608e244.tar.bz2 gentoo-2-d20bad7a351d8f1ce2808e847a0a21fd1608e244.zip |
Fix the fix a bit.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vim-doc.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/vim-doc.eclass b/eclass/vim-doc.eclass index 98c29235d686..62a859be0aea 100644 --- a/eclass/vim-doc.eclass +++ b/eclass/vim-doc.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-doc.eclass,v 1.14 2007/05/14 19:52:06 pioto Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim-doc.eclass,v 1.15 2007/05/14 20:04:07 pioto Exp $ # # This eclass is used by vim.eclass and vim-plugin.eclass to update # the documentation tags. This is necessary since vim doesn't look in @@ -68,5 +68,5 @@ update_vim_helptags() { fi done - [[ -n "${vim}" ]] && rm "${vim}" + [[ -n "${vim}" && -f "${vim}" ]] && rm "${vim}" } |