diff options
author | 2003-07-30 21:42:57 +0000 | |
---|---|---|
committer | 2003-07-30 21:42:57 +0000 | |
commit | 0ae519dc8300cb36fb6f198ba9788f5861283b94 (patch) | |
tree | 365bfa559ee950bf1ef507e4f072ccf9351ace8b /eclass | |
parent | Added Frederick Grim's patch (diff) | |
download | historical-0ae519dc8300cb36fb6f198ba9788f5861283b94.tar.gz historical-0ae519dc8300cb36fb6f198ba9788f5861283b94.tar.bz2 historical-0ae519dc8300cb36fb6f198ba9788f5861283b94.zip |
fix syntax typo
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 aa90d35b771d..25ed50fbc736 100644 --- a/eclass/vim-doc.eclass +++ b/eclass/vim-doc.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim-doc.eclass,v 1.2 2003/07/30 18:53:54 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim-doc.eclass,v 1.3 2003/07/30 21:42:57 agriffis 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 @@ -24,7 +24,7 @@ update_vim_helptags() { local vim=`which vim 2>/dev/null` [[ -z "$vim" ]] && vim=`which gvim 2>/dev/null` [[ -z "$vim" ]] && vim=`which kvim 2>/dev/null` - if [[ -z "$vim" -a $PN != vim-core ]]; then + if [[ -z "$vim" && $PN != vim-core ]]; then ewarn "No suitable vim binary to rebuild documentation tags" fi |