aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2020-06-08 09:27:11 +1200
committerTom Ryder <tom@sanctum.geek.nz>2020-06-08 09:27:19 +1200
commitada345758d9cfb86ba740c5e1c9db49dd04c96f3 (patch)
tree3107ccba401ef1c26d2cd335381aed317b0ef77f
parentMerge branch 'release/v9.19.0' (diff)
downloaddotfiles-ada345758d9cfb86ba740c5e1c9db49dd04c96f3.tar.gz
dotfiles-ada345758d9cfb86ba740c5e1c9db49dd04c96f3.zip
Restore missing -p flags to Makefile `mkdir` calls
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6142b909..2377abdb 100644
--- a/Makefile
+++ b/Makefile
@@ -431,10 +431,10 @@ install-games-man:
install-git: git/config $(GIT_TEMPLATE_HOOKS)
mkdir -p -- $(XDG_CONFIG_HOME)/git
cp -p -- git/config $(XDG_CONFIG_HOME)/git/config
- mkdir -- $(XDG_CONFIG_HOME)/git/template
+ mkdir -p -- $(XDG_CONFIG_HOME)/git/template
cp -pR -- git/template/description \
$(XDG_CONFIG_HOME)/git/template/description
- mkdir -- $(XDG_CONFIG_HOME)/git/template/hooks
+ mkdir -p -- $(XDG_CONFIG_HOME)/git/template/hooks
cp -pR -- $(GIT_TEMPLATE_HOOKS) \
$(XDG_CONFIG_HOME)/git/template/hooks