aboutsummaryrefslogtreecommitdiff
path: root/bash/Makefile
diff options
context:
space:
mode:
authorAlan Dipert <alan@dipert.org>2015-02-10 18:32:19 -0500
committerAlan Dipert <alan@dipert.org>2015-02-10 18:32:19 -0500
commitc97af215258bcc71ecc0e01a0d78794018be4ecf (patch)
treeb27108f7dafcbcb882ecd247c60216ba1d9bcc09 /bash/Makefile
parent7838e3398e40af2fa82b0c71d392eb64ad69c4d8 (diff)
downloadmal-c97af215258bcc71ecc0e01a0d78794018be4ecf.tar.gz
mal-c97af215258bcc71ecc0e01a0d78794018be4ecf.zip
Use env in Makefile
Diffstat (limited to 'bash/Makefile')
-rw-r--r--bash/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash/Makefile b/bash/Makefile
index df663b5..5028788 100644
--- a/bash/Makefile
+++ b/bash/Makefile
@@ -6,7 +6,7 @@ all: mal.sh
mal.sh: $(SOURCES)
cat $+ > $@
- echo "#!/bin/bash" > $@
+ echo "#!/usr/bin/env bash" > $@
cat $+ | grep -v "^source " >> $@
chmod +x $@