aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2015-10-04 01:12:40 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2015-10-04 01:12:40 +0300
commitc02009a6989710714cc0e2becc9cad11d4b0381d (patch)
tree611b290269f9b864090e40483f02b2237581fdb9
parent7bb28ef3c87f4f19daf83f4f564d9e3338eff10a (diff)
parent721aa2fa65a18190bc80354e261bbed62feed139 (diff)
downloadmeson-c02009a6989710714cc0e2becc9cad11d4b0381d.zip
meson-c02009a6989710714cc0e2becc9cad11d4b0381d.tar.gz
meson-c02009a6989710714cc0e2becc9cad11d4b0381d.tar.bz2
Merge pull request #273 from kylemanna/python3-env
tests: Use /usr/bin/env python3
-rw-r--r--authors.txt1
-rwxr-xr-xtest cases/common/56 custom target/my_compiler.py2
-rwxr-xr-xtest cases/common/57 custom target chain/my_compiler.py2
-rwxr-xr-xtest cases/common/57 custom target chain/my_compiler2.py2
-rwxr-xr-xtest cases/common/59 object generator/obj_generator.py2
5 files changed, 5 insertions, 4 deletions
diff --git a/authors.txt b/authors.txt
index 88e8ba3..e32bd28 100644
--- a/authors.txt
+++ b/authors.txt
@@ -21,3 +21,4 @@ Jouni Roivas
Rafaël Kooi
Marko Raatikainen
German Diago Gomez
+Kyle Manna
diff --git a/test cases/common/56 custom target/my_compiler.py b/test cases/common/56 custom target/my_compiler.py
index 3165cf8..43e7143 100755
--- a/test cases/common/56 custom target/my_compiler.py
+++ b/test cases/common/56 custom target/my_compiler.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
import sys
diff --git a/test cases/common/57 custom target chain/my_compiler.py b/test cases/common/57 custom target chain/my_compiler.py
index 3165cf8..43e7143 100755
--- a/test cases/common/57 custom target chain/my_compiler.py
+++ b/test cases/common/57 custom target chain/my_compiler.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
import sys
diff --git a/test cases/common/57 custom target chain/my_compiler2.py b/test cases/common/57 custom target chain/my_compiler2.py
index 8c767b1..22a4160 100755
--- a/test cases/common/57 custom target chain/my_compiler2.py
+++ b/test cases/common/57 custom target chain/my_compiler2.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
import sys
diff --git a/test cases/common/59 object generator/obj_generator.py b/test cases/common/59 object generator/obj_generator.py
index 6f98f39..6960059 100755
--- a/test cases/common/59 object generator/obj_generator.py
+++ b/test cases/common/59 object generator/obj_generator.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
# Mimic a binary that generates an object file (e.g. windres).