diff options
author | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2015-06-14 09:18:40 +0000 |
---|---|---|
committer | Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org> | 2015-06-14 09:18:40 +0000 |
commit | ebd95eeb5048d19bc13a3c942c828c10bcd697a9 (patch) | |
tree | c7cf54bb7b4b0a8eb58360bb2ed2f090f66f793a /editors/vim/files/patch-src-installml.sh | |
parent | - Update to 2.11.2 (diff) |
- Update to 7.4.738
- Add PORTSCOUT
Changes: https://github.com/vim/vim/commits/master
Notes
Notes:
svn path=/head/; revision=389616
Diffstat (limited to 'editors/vim/files/patch-src-installml.sh')
-rw-r--r-- | editors/vim/files/patch-src-installml.sh | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/editors/vim/files/patch-src-installml.sh b/editors/vim/files/patch-src-installml.sh new file mode 100644 index 000000000000..46c435c59c8b --- /dev/null +++ b/editors/vim/files/patch-src-installml.sh @@ -0,0 +1,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 |