aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-06-10 10:44:18 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-06-10 10:44:18 +1200
commit69dabe5a87f556505b6dd05ea2250df293b4889b (patch)
treeffefcd8b0d4ac4d6d61beea8dd4ac67031f79b99 /Makefile
parentPrint verse(1) output on login but only once a day (diff)
downloaddotfiles-69dabe5a87f556505b6dd05ea2250df293b4889b.tar.gz
dotfiles-69dabe5a87f556505b6dd05ea2250df293b4889b.zip
Instate .bash_profile.d
Stuff that prints messages really only needs to be done for my primary login shell
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 24006419..26457567 100644
--- a/Makefile
+++ b/Makefile
@@ -64,10 +64,12 @@ install : install-bash \
install-bash : test-bash
install -m 0755 -d -- \
"$(HOME)"/.config \
- "$(HOME)"/.bashrc.d
+ "$(HOME)"/.bashrc.d \
+ "$(HOME)"/.bash_profile.d
install -m 0644 -- bash/bashrc "$(HOME)"/.bashrc
install -m 0644 -- bash/bashrc.d/* "$(HOME)"/.bashrc.d
install -m 0644 -- bash/bash_profile "$(HOME)"/.bash_profile
+ install -m 0644 -- bash/bash_profile.d/* "$(HOME)"/.bash_profile.d
install -m 0644 -- bash/bash_logout "$(HOME)"/.bash_logout
install -m 0644 -- bash/bash_completion "$(HOME)"/.config/bash_completion
@@ -216,7 +218,7 @@ test-sh :
@echo "All sh(1) scripts parsed successfully."
test-bash :
- @for bash in bash/* bash/bashrc.d/* ; do \
+ @for bash in bash/* bash/bashrc.d/* bash/bash_profile.d/* ; do \
if [ -f "$$bash" ] && ! bash -n "$$bash" ; then \
exit 1 ; \
fi \