diff options
author | Dylan Baker <baker.dylan.c@gmail.com> | 2014-06-16 14:54:18 -0700 |
---|---|---|
committer | Dylan Baker <baker.dylan.c@gmail.com> | 2014-06-19 18:13:20 -0700 |
commit | 40b5d5288991fec2cc76ea4af7050555be467126 (patch) | |
tree | 8b8a33196ff6087b254cab1b1f8d12075d8ba67d /piglit-run.py | |
parent | 93e3108e37be988dc03eac3c7c8cf4aa3db7aa92 (diff) |
python: change she-bang to python2
This replaces #!/usr/bin/env python with #!/usr/bin/env python2, which
fixes the build on archlinux. This has been proposed before, but at that
time debian didn't provide a python2 executable, so it would break
debian. Debian sid as of today provides python2.
v2: - fix piglit as well
Signed-off-by: Dylan Baker <baker.dylan.c@gmail.com>
Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
Diffstat (limited to 'piglit-run.py')
-rwxr-xr-x | piglit-run.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/piglit-run.py b/piglit-run.py index 7c2d71aef..4c0f87861 100755 --- a/piglit-run.py +++ b/piglit-run.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 # Copyright (c) 2014 Intel Corporation |