aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-05-12 23:31:30 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-05-12 23:56:20 +1200
commit08c768e5110b1acc3bbdc4da365e7e59cb50f510 (patch)
treeb8d22747e83add59a98522fe256944850765d70f /Makefile
parentRemove unnecessary directory creations (diff)
downloaddotfiles-08c768e5110b1acc3bbdc4da365e7e59cb50f510.tar.gz
dotfiles-08c768e5110b1acc3bbdc4da365e7e59cb50f510.zip
Add option terminators to some mkdir calls
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index dd733ddb..d27ad92e 100644
--- a/Makefile
+++ b/Makefile
@@ -550,7 +550,7 @@ install-terminfo:
install-tidy: install-sh
cp -p -- tidy/profile.d/* $(HOME)/.profile.d
- mkdir -p $(XDG_CONFIG_HOME)/tidy
+ mkdir -p -- $(XDG_CONFIG_HOME)/tidy
cp -p -- tidy/tidyrc $(XDG_CONFIG_HOME)/tidy/tidyrc
install-tmux: tmux/tmux.conf install-terminfo
@@ -582,23 +582,23 @@ install-vim-after: install-vim-after-ftplugin \
install-vim-after-syntax
install-vim-after-ftplugin: install-vim-compiler
- mkdir -p $(VIMDIR)/after/ftplugin
+ mkdir -p -- $(VIMDIR)/after/ftplugin
cp -p -- vim/after/ftplugin/*.vim $(VIMDIR)/after/ftplugin
install-vim-after-indent: install-vim-autoload
- mkdir -p $(VIMDIR)/after/indent
+ mkdir -p -- $(VIMDIR)/after/indent
cp -p -- vim/after/indent/*.vim $(VIMDIR)/after/indent
install-vim-after-plugin: install-vim-autoload
- mkdir -p $(VIMDIR)/after/plugin
+ mkdir -p -- $(VIMDIR)/after/plugin
cp -p -- vim/after/plugin/*.vim $(VIMDIR)/after/plugin
install-vim-after-syntax:
- mkdir -p $(VIMDIR)/after/syntax
+ mkdir -p -- $(VIMDIR)/after/syntax
cp -p -- vim/after/syntax/*.vim $(VIMDIR)/after/syntax
install-vim-autoload:
- mkdir -p $(VIMDIR)/autoload
+ mkdir -p -- $(VIMDIR)/autoload
cd vim && find autoload \
-type d -exec sh -c \
'mkdir -p -- $(VIMDIR)/"$$1"' _ {} \; \