aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-03-24 09:11:27 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-03-24 09:11:27 +1300
commit9d6199c5dc0911a5595e5f225ad909845ed8cc17 (patch)
treeba015cf824cbefeab8c2950700ed99669b3d0859 /Makefile
parentUse builtin macros for filenames (diff)
downloaddotfiles-9d6199c5dc0911a5595e5f225ad909845ed8cc17.tar.gz
dotfiles-9d6199c5dc0911a5595e5f225ad909845ed8cc17.zip
Change shb(1) to read stdin by default
This is clearer.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 71a5ceeb..fd3c9931 100644
--- a/Makefile
+++ b/Makefile
@@ -148,19 +148,19 @@ tmux/tmux.conf: tmux/tmux.conf.m4
tmux/tmux.conf.m4 > $@
.awk:
- bin/shb $< awk -f > $@
+ bin/shb awk -f < $< > $@
chmod +x -- $@
.bash:
- bin/shb $< bash > $@
+ bin/shb bash < $< > $@
chmod +x -- $@
.pl:
- bin/shb $< perl > $@
+ bin/shb perl < $< > $@
chmod +x -- $@
.sed:
- bin/shb $< sed -f > $@
+ bin/shb sed -f < $< > $@
chmod +x -- $@
install: install-bash \