]> git.pld-linux.org Git - packages/vim.git/blob - vim-tutor-lessdeps.patch
- unconditional noarch subpackages
[packages/vim.git] / vim-tutor-lessdeps.patch
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.
6  
7 -# Vim could be called "vim" or "vi".  Also check for "vimN", for people who
8 -# have Vim installed with its version number.
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"
11 +# Vim could be called "vim" or "vi".
12 +seq="/usr/bin/vim.heavy /usr/bin/vim /bin/vi"
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.
16 -  seq="gvim gvim81 gvim80 gvim8 gvim74 gvim73 gvim72 gvim71 gvim70 gvim7 gvim6 $seq"
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"
18    shift
19  fi
20  
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.0744 seconds and 3 git commands to generate.