aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-08-14 14:43:43 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-08-14 14:43:43 +1200
commit565e3d875616679f48ebd4878207be6295a52d3d (patch)
treebdf305baf9c21e2796e8c6bc3050d4e3f9932355 /Makefile
parentStop feh(1) handling GIFs (diff)
downloaddotfiles-565e3d875616679f48ebd4878207be6295a52d3d.tar.gz
dotfiles-565e3d875616679f48ebd4878207be6295a52d3d.zip
Don't install raw .sed scripts in ~/.local/bin
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 599eb315..8e724663 100644
--- a/Makefile
+++ b/Makefile
@@ -162,7 +162,12 @@ install-bash-completion : install-bash
install-bin : bin/sd2u bin/su2d bin/unf test-bin install-bin-man
install -m 0755 -d -- "$(HOME)"/.local/bin
- install -m 0755 -- bin/* "$(HOME)"/.local/bin
+ for name in bin/* ; do \
+ case $$name in \
+ *.sed) ;; \
+ *) install -m 0755 -- "$$name" "$(HOME)"/.local/bin ;; \
+ esac \
+ done
install-bin-man :
install -m 0755 -d -- \