Re: [Mesa-dev] [PATCH] python: Remove shebang and executable bit

2018-08-23 Thread Emil Velikov
On Thu, 23 Aug 2018 at 11:11, Eric Engestrom wrote: > > On Wednesday, 2018-08-22 18:58:26 +0200, Mathieu Bridon wrote: > > Since the script is never executed directly, but launched by Meson as an > > argument to the Python interpreter, those are not needed any more. > > > > In addition, they are t

Re: [Mesa-dev] [PATCH] python: Remove shebang and executable bit

2018-08-23 Thread Eric Engestrom
On Wednesday, 2018-08-22 18:58:26 +0200, Mathieu Bridon wrote: > Since the script is never executed directly, but launched by Meson as an > argument to the Python interpreter, those are not needed any more. > > In addition, they are the reason this script was missed when I moved the > Meson builds

[Mesa-dev] [PATCH] python: Remove shebang and executable bit

2018-08-22 Thread Mathieu Bridon
Since the script is never executed directly, but launched by Meson as an argument to the Python interpreter, those are not needed any more. In addition, they are the reason this script was missed when I moved the Meson buildsystem to Python 3, so removing them helps avoiding future confusion. ---