blob: 46c435c59c8b738f68744623f3ce40f34da9ad0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
--- src/installml.sh.orig 2015-05-14 03:56:21 UTC
+++ src/installml.sh
@@ -53,16 +53,16 @@ if test $what = "install" -a \( -f $dest
fi
# ex
- if test ! -f $destdir/$exname.1 -a -f $destdir/$vimname.1; then
- echo creating link $destdir/$exname.1
- cd $destdir; ln -s $vimname.1 $exname.1
- fi
+ #if test ! -f $destdir/$exname.1 -a -f $destdir/$vimname.1; then
+ # echo creating link $destdir/$exname.1
+ # cd $destdir; ln -s $vimname.1 $exname.1
+ #fi
# view
- if test ! -f $destdir/$viewname.1 -a -f $destdir/$vimname.1; then
- echo creating link $destdir/$viewname.1
- cd $destdir; ln -s $vimname.1 $viewname.1
- fi
+ #if test ! -f $destdir/$viewname.1 -a -f $destdir/$vimname.1; then
+ # echo creating link $destdir/$viewname.1
+ # cd $destdir; ln -s $vimname.1 $viewname.1
+ #fi
# rvim
if test ! -f $destdir/$rvimname.1 -a -f $destdir/$vimname.1; then
@@ -119,14 +119,14 @@ fi
if test $what = "uninstall"; then
echo Checking for Vim manual page links in $destdir...
- if test -L $destdir/$exname.1; then
- echo deleting $destdir/$exname.1
- rm -f $destdir/$exname.1
- fi
- if test -L $destdir/$viewname.1; then
- echo deleting $destdir/$viewname.1
- rm -f $destdir/$viewname.1
- fi
+ #if test -L $destdir/$exname.1; then
+ # echo deleting $destdir/$exname.1
+ # rm -f $destdir/$exname.1
+ #fi
+ #if test -L $destdir/$viewname.1; then
+ # echo deleting $destdir/$viewname.1
+ # rm -f $destdir/$viewname.1
+ #fi
if test -L $destdir/$rvimname.1; then
echo deleting $destdir/$rvimname.1
rm -f $destdir/$rvimname.1
|