]> git.pld-linux.org Git - packages/vim.git/blame - vim-tutor-lessdeps.patch
- unconditional noarch subpackages
[packages/vim.git] / vim-tutor-lessdeps.patch
CommitLineData
d9a10acf
ER
1--- vim71/src/vimtutor~ 2008-05-29 22:14:57.000000000 +0300
2+++ vim71/src/vimtutor 2008-05-29 22:24:29.118736307 +0300
3@@ -9,14 +9,12 @@
4 # When this fails or no argument was given, it tries using 'v:lang'
5 # When that also fails, it uses the English version.
742968eb 6
cc598b93
AG
7-# Vim could be called "vim" or "vi". Also check for "vimN", for people who
8-# have Vim installed with its version number.
0811e4c2
AM
9-# We anticipate up to a future Vim 8.1 version :-).
10-seq="vim vim81 vim80 vim8 vim74 vim73 vim72 vim71 vim70 vim7 vim6 vi"
cc598b93 11+# Vim could be called "vim" or "vi".
9421d938 12+seq="/usr/bin/vim.heavy /usr/bin/vim /bin/vi"
d9a10acf
ER
13 if test "$1" = "-g"; then
14 # Try to use the GUI version of Vim if possible, it will fall back
15 # on Vim if Gvim is not installed.
0811e4c2 16- seq="gvim gvim81 gvim80 gvim8 gvim74 gvim73 gvim72 gvim71 gvim70 gvim7 gvim6 $seq"
9421d938 17+ seq="/usr/bin/gvim /usr/bin/gvim.heavy /usr/bin/gvim.athena /usr/bin/gvim.gnome /usr/bin/gvim.gtk /usr/bin/gvim.motif $seq"
d9a10acf
ER
18 shift
19 fi
742968eb 20
d9a10acf
ER
21@@ -53,8 +51,7 @@
22 trap "rm -rf $TODELETE" 0 1 2 3 9 11 13 15
23
24 for i in $seq; do
25- testvim=`which $i 2>/dev/null`
26- if test -f "$testvim"; then
27+ if test -x "$i"; then
28 VIM=$i
29 break
30 fi
This page took 0.108878 seconds and 4 git commands to generate.