aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2013-09-30 02:24:56 +0200
committerMattias Andrée <maandree@operamail.com>2013-09-30 02:24:56 +0200
commitf368c60dc0c7e54706f335f16650a0e91979931a (patch)
tree265d015aa0efe0bcfedf275e47f03261f138f9e4 /Makefile
parentwhoops, missed a slash (diff)
downloadgates-of-tartaros-f368c60dc0c7e54706f335f16650a0e91979931a.tar.gz
gates-of-tartaros-f368c60dc0c7e54706f335f16650a0e91979931a.tar.bz2
gates-of-tartaros-f368c60dc0c7e54706f335f16650a0e91979931a.tar.xz
misc fixes
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 3226df4..201295b 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ all: got.install got.py.install got-cmd.install
got.install: got
cp "$<" "$@"
- sed -i 's:#!/usr/bin/env bash:$(BASH_SHEBANG):g' "$@"
+ sed -i 's:#!/usr/bin/env bash:#!$(BASH_SHEBANG):g' "$@"
sed -i 's:@prefix@:$(PREFIX):g' "$@"
sed -i 's:@etc@:$(SYSCONF):g' "$@"
sed -i 's:@libexec@:$(LIBEXEC):g' "$@"
@@ -24,11 +24,11 @@ got.install: got
got.py.install: got.py
cp "$<" "$@"
- sed -i 's:#!/usr/bin/env python3:$(PY3_SHEBANG):g' "$@"
+ sed -i 's:#!/usr/bin/env python3:#!$(PY3_SHEBANG):g' "$@"
got-cmd.install: got-cmd
cp "$<" "$@"
- sed -i 's:#!/usr/bin/env bash:$(BASH_SHEBANG):g' "$@"
+ sed -i 's:#!/usr/bin/env bash:#!$(BASH_SHEBANG):g' "$@"
install: got.install got.py.install got-cmd.install