aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-12-30 22:31:30 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-12-30 22:42:56 +1300
commit0d79eeb3ab41cf49310ec53e6cf55ccbfe2f7e31 (patch)
tree7d49a185ae556ee2a89818cab4d6d85747696875 /Makefile
parentAdd environment variable (diff)
downloaddotfiles-0d79eeb3ab41cf49310ec53e6cf55ccbfe2f7e31.tar.gz
dotfiles-0d79eeb3ab41cf49310ec53e6cf55ccbfe2f7e31.zip
Fix a zsh-as-sh/ksh-specific issue
Very niche, but interesting to fix anyway
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index da6b043a..60fec019 100644
--- a/Makefile
+++ b/Makefile
@@ -394,7 +394,10 @@ install-yash : check-yash install-sh
install -pm 0644 -- yash/yashrc.d/* "$(HOME)"/.yashrc.d
install-zsh : check-zsh install-sh
- install -m 0755 -d -- "$(HOME)"/.zshrc.d
+ install -m 0755 -d -- \
+ "$(HOME)"/.profile.d \
+ "$(HOME)"/.zshrc.d
+ install -pm 0644 -- zsh/profile.d/* "$(HOME)"/.profile.d
install -pm 0644 -- zsh/zprofile "$(HOME)"/.zprofile
install -pm 0644 -- zsh/zshrc "$(HOME)"/.zshrc
install -pm 0644 -- zsh/zshrc.d/* "$(HOME)"/.zshrc.d