summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2003-07-30 21:42:57 +0000
committerAron Griffis <agriffis@gentoo.org>2003-07-30 21:42:57 +0000
commitdff72d12807c6b893b39b94c9c2379d52d9d3c99 (patch)
treebae8d09a85849cb66f0d91a4bbc897e8400824d8 /eclass/vim-doc.eclass
parentAdded Frederick Grim's patch (diff)
downloadgentoo-2-dff72d12807c6b893b39b94c9c2379d52d9d3c99.tar.gz
gentoo-2-dff72d12807c6b893b39b94c9c2379d52d9d3c99.tar.bz2
gentoo-2-dff72d12807c6b893b39b94c9c2379d52d9d3c99.zip
fix syntax typo
Diffstat (limited to 'eclass/vim-doc.eclass')
-rw-r--r--eclass/vim-doc.eclass4
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