aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 5d8369c9..49304591 100644
--- a/Makefile
+++ b/Makefile
@@ -141,12 +141,10 @@ install-abook :
install-bash : check-bash install-sh
install -m 0755 -d -- \
"$(HOME)"/.config \
- "$(HOME)"/.bashrc.d \
- "$(HOME)"/.bash_profile.d
+ "$(HOME)"/.bashrc.d
install -pm 0644 -- bash/bashrc "$(HOME)"/.bashrc
install -pm 0644 -- bash/bashrc.d/* "$(HOME)"/.bashrc.d
install -pm 0644 -- bash/bash_profile "$(HOME)"/.bash_profile
- install -pm 0644 -- bash/bash_profile.d/* "$(HOME)"/.bash_profile.d
install -pm 0644 -- bash/bash_logout "$(HOME)"/.bash_logout
install-bash-completion : install-bash
@@ -157,7 +155,7 @@ install-bash-completion : install-bash
install-bin : bin/sd2u bin/su2d bin/unf check-bin install-bin-man
install -m 0755 -d -- "$(HOME)"/.local/bin
for name in bin/* ; do \
- [ -x "$$name" ] || continue ; \
+ [ -x "$$name" ] && \
install -m 0755 -- "$$name" "$(HOME)"/.local/bin ; \
done
@@ -187,7 +185,7 @@ install-finger :
install-games : games/acq games/kvlt games/zs check-games install-games-man
install -m 0755 -d -- "$(HOME)"/.local/games
for name in games/* ; do \
- [ -x "$$name" ] || continue ; \
+ [ -x "$$name" ] && \
install -m 0755 -- "$$name" "$(HOME)"/.local/games ; \
done