aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-06-18 10:43:51 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-06-18 10:43:51 +1200
commitf1eecfbe6d66e40c66b1d91794f954e974bfd8df (patch)
treeac4eb9aae86d2356106c5639d8ffc570b7899523
parentNo longer signing by default (diff)
downloaddotfiles-f1eecfbe6d66e40c66b1d91794f954e974bfd8df.tar.gz
dotfiles-f1eecfbe6d66e40c66b1d91794f954e974bfd8df.zip
Move man dir creat to correct target
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index e38a9963..5fa79b62 100644
--- a/Makefile
+++ b/Makefile
@@ -94,13 +94,13 @@ install-bash : test-bash
install -pm 0644 -- bash/bash_completion "$(HOME)"/.config/bash_completion
install-bin : test-bin install-man
- install -m 0755 -d -- \
- "$(HOME)"/.local/bin \
- "$(HOME)"/.local/share/man/man1 \
- "$(HOME)"/.local/share/man/man8
+ install -m 0755 -d -- "$(HOME)"/.local/bin
install -m 0755 -- bin/* "$(HOME)"/.local/bin
install-man:
+ install -m 0755 -d -- \
+ "$(HOME)"/.local/share/man/man1 \
+ "$(HOME)"/.local/share/man/man8
install -pm 0644 -- man/man1/* "$(HOME)"/.local/share/man/man1
install -pm 0644 -- man/man8/* "$(HOME)"/.local/share/man/man8