diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-03-24 19:38:44 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-03-24 19:38:44 +0200 |
commit | 6bbaba5a8230003fca393ad8ccc3971f2b2f349e (patch) | |
tree | c40a79a45ca8ecc352ba9586d3933e97a31f8e78 | |
parent | 8ba79591bccd50a1f0589214bb431bfc52cac768 (diff) | |
download | meson-6bbaba5a8230003fca393ad8ccc3971f2b2f349e.zip meson-6bbaba5a8230003fca393ad8ccc3971f2b2f349e.tar.gz meson-6bbaba5a8230003fca393ad8ccc3971f2b2f349e.tar.bz2 |
Removed -tt from shebang lines because GNU env can't handle it and the
test suite now checks for tabs.
-rwxr-xr-x | meson.py | 2 | ||||
-rwxr-xr-x | run_tests.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -#!/usr/bin/env python3 -tt +#!/usr/bin/env python3 # Copyright 2012 Jussi Pakkanen diff --git a/run_tests.py b/run_tests.py index dd13669..1cfb42f 100755 --- a/run_tests.py +++ b/run_tests.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python3 -tt +#!/usr/bin/env python3 # Copyright 2012 Jussi Pakkanen |