From: Emil Velikov Date: Wed, 22 Feb 2017 18:21:45 +0000 (+0000) Subject: gallium/tools: use correct shebang for python scripts X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c79c54ae3471e4c9c356e734c38b8ba72dfcf4a7;p=mesa.git gallium/tools: use correct shebang for python scripts These are python2 scripts and the generic "python" may point to python3. Signed-off-by: Emil Velikov Reviewed-by: Eric Engestrom --- diff --git a/src/gallium/tools/trace/diff_state.py b/src/gallium/tools/trace/diff_state.py index 00853bacbf7..877dc388a8e 100755 --- a/src/gallium/tools/trace/diff_state.py +++ b/src/gallium/tools/trace/diff_state.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 ########################################################################## # # Copyright 2011 Jose Fonseca diff --git a/src/gallium/tools/trace/dump.py b/src/gallium/tools/trace/dump.py index 4a8ce863cf0..10211c87c56 100755 --- a/src/gallium/tools/trace/dump.py +++ b/src/gallium/tools/trace/dump.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 ########################################################################## # # Copyright 2008 VMware, Inc. diff --git a/src/gallium/tools/trace/dump_state.py b/src/gallium/tools/trace/dump_state.py index e726f7b2ad3..4531843279e 100755 --- a/src/gallium/tools/trace/dump_state.py +++ b/src/gallium/tools/trace/dump_state.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 ########################################################################## # # Copyright 2008-2013, VMware, Inc. diff --git a/src/gallium/tools/trace/format.py b/src/gallium/tools/trace/format.py index e50f61299fc..de6f4021597 100755 --- a/src/gallium/tools/trace/format.py +++ b/src/gallium/tools/trace/format.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 ########################################################################## # # Copyright 2008 VMware, Inc. diff --git a/src/gallium/tools/trace/model.py b/src/gallium/tools/trace/model.py index fb56701bf4c..6a421847113 100755 --- a/src/gallium/tools/trace/model.py +++ b/src/gallium/tools/trace/model.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 ########################################################################## # # Copyright 2008 VMware, Inc. diff --git a/src/gallium/tools/trace/parse.py b/src/gallium/tools/trace/parse.py index 25482c8899a..004b585f95a 100755 --- a/src/gallium/tools/trace/parse.py +++ b/src/gallium/tools/trace/parse.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python2 ########################################################################## # # Copyright 2008 VMware, Inc.