diff options
author | Fabian Groffen <grobian@gentoo.org> | 2006-10-25 20:18:53 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2006-10-25 20:18:53 +0000 |
commit | cca77297956d6ea4e6a24b48a9acf5a81704c428 (patch) | |
tree | 7d6c866ab0bba3ae8050faa548d471d873056182 /eclass | |
parent | Fix for 64 bits CPU. Bug #146049 (diff) | |
download | gentoo-2-cca77297956d6ea4e6a24b48a9acf5a81704c428.tar.gz gentoo-2-cca77297956d6ea4e6a24b48a9acf5a81704c428.tar.bz2 gentoo-2-cca77297956d6ea4e6a24b48a9acf5a81704c428.zip |
Don't do ppc-macos trickery, vim is either there or not.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vim-doc.eclass | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/eclass/vim-doc.eclass b/eclass/vim-doc.eclass index 5038aaaccf9c..0571980d4619 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.11 2006/09/24 19:41:56 pioto Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim-doc.eclass,v 1.12 2006/10/25 20:18:53 grobian 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 @@ -20,13 +20,9 @@ update_vim_helptags() { if [[ $PN != vim-core ]]; then # Find a suitable vim binary for updating tags :helptags - if use ppc-macos ; then - vim=$(which gvim 2>/dev/null ) - else - vim=$(which vim 2>/dev/null) - [[ -z "$vim" ]] && vim=$(which gvim 2>/dev/null) - [[ -z "$vim" ]] && vim=$(which kvim 2>/dev/null) - fi + 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" ]]; then ewarn "No suitable vim binary to rebuild documentation tags" fi |