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 | d5e9628b8ddc71b74e0f2885114f486a615bb14f (patch) | |
tree | 53c9f12dae7c47596544b4257e52ad23285dfe6f /eclass/vim-doc.eclass | |
parent | Kill vimball. It's in vim7 (oops). (diff) | |
download | historical-d5e9628b8ddc71b74e0f2885114f486a615bb14f.tar.gz historical-d5e9628b8ddc71b74e0f2885114f486a615bb14f.tar.bz2 historical-d5e9628b8ddc71b74e0f2885114f486a615bb14f.zip |
Fix the fix a bit.
Diffstat (limited to 'eclass/vim-doc.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}" } |