diff options
author | Aron Griffis <agriffis@gentoo.org> | 2003-07-30 21:42:57 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2003-07-30 21:42:57 +0000 |
commit | dff72d12807c6b893b39b94c9c2379d52d9d3c99 (patch) | |
tree | bae8d09a85849cb66f0d91a4bbc897e8400824d8 /eclass | |
parent | Added Frederick Grim's patch (diff) | |
download | gentoo-2-dff72d12807c6b893b39b94c9c2379d52d9d3c99.tar.gz gentoo-2-dff72d12807c6b893b39b94c9c2379d52d9d3c99.tar.bz2 gentoo-2-dff72d12807c6b893b39b94c9c2379d52d9d3c99.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 |