aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 8 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 5c918dca..66a99a10 100644
--- a/Makefile
+++ b/Makefile
@@ -104,12 +104,14 @@ install-vim :
install -m 0644 -- vim/after/ftplugin/* $(HOME)/.vim/after/ftplugin
install -m 0644 -- vim/after/plugin/* $(HOME)/.vim/after/plugin
git submodule update --init
- find vim/bundle -type d \( -name .git -prune -o -type d -print \) | while IFS= read -r dir ; do \
- install -m 0755 -d -- "$${dir}" $(HOME)/.vim/"$${dir#vim/}" ; \
- done
- find vim/bundle -type f ! -name '.git*' | while IFS= read -r file ; do \
- install -m 0644 -- "$${file}" $(HOME)/.vim/"$${file#vim/}" ; \
- done
+ cd vim && find bundle -type d \( -name .git -prune -o -type d -print \) | \
+ while IFS= read -r dir ; do \
+ install -m 0755 -d -- "$${dir}" $(HOME)/.vim/"$$dir" ; \
+ done
+ cd vim && find bundle -type f ! -name '.git*' | \
+ while IFS= read -r file ; do \
+ install -m 0644 -- "$${file}" $(HOME)/.vim/"$$file" ; \
+ done
rm -f -- $(HOME)/.vim/autoload/pathogen.vim
ln -s -- ../bundle/pathogen/autoload/pathogen.vim \
$(HOME)/.vim/autoload/pathogen.vim