aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-13 10:59:31 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-13 10:59:31 +1200
commite65d1e0790768fdf265650f5b12880805ce601f1 (patch)
treef099f23052a2323b59ebe472872e66a4d3f29e77 /Makefile
parentMerge branch 'release/v0.51.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-e65d1e0790768fdf265650f5b12880805ce601f1.tar.gz
dotfiles-e65d1e0790768fdf265650f5b12880805ce601f1.zip
Merge branch 'release/v0.52.0'v0.52.0
* release/v0.52.0: Bump VERSION Use proper version test for 'fo' j Check for +unix before binding date commands Correct Mutt filename pattern Add Ruby shebang Don't require num suffix to Python shebang word Accept "5" as suffix to Perl shebang word Add TCL shebang handling Lots of extension to filetype.vim Rename terminfo files to *.ti extension Add .wgetrc Vim filetype Add crontab(5) Vim filetype Apply t_cm hack to Makefile Vim invocation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6c9d0fab..02030e7a 100644
--- a/Makefile
+++ b/Makefile
@@ -475,7 +475,7 @@ install-subversion:
cp -p -- subversion/config $(HOME)/.subversion
install-terminfo:
- find terminfo -type f -name '*.info' \
+ find terminfo -type f -name '*.ti' \
-exec tic -- {} \;
install-tidy: install-sh
@@ -533,7 +533,8 @@ install-vim-bundle: install-vim-config
find vim/bundle/*/*/* \
-type f -exec sh -c \
'cp -p -- "$$1" $(VIMDIR)/"$${1#vim/bundle/*/}"' _ {} \;
- vim -eT dumb -c 'helptags $(VIMDIR)/doc' -c quit
+ cmd=$$(printf 'set t_cm=\r|') ; \
+ vim -eT dumb --cmd "$${cmd%|}" -c 'helptags $(VIMDIR)/doc' -c quit
install-vim-compiler:
mkdir -p -- $(VIMDIR)/compiler