diff options
author | Jordan Petridis <jpetridis@gnome.org> | 2019-02-25 07:09:35 +0200 |
---|---|---|
committer | Jordan Petridis <jpetridis@gnome.org> | 2019-02-27 16:25:58 +0200 |
commit | 69251d051ae267e66f0f83e748ce7265230ee6db (patch) | |
tree | 8dfecff1ff64a3cdd296a9d55c0dd61eaeafc63c /build-aux | |
parent | d930c4a4d12e730a2d1711f865754315006506ff (diff) | |
download | gtk+-69251d051ae267e66f0f83e748ce7265230ee6db.tar.gz |
build: Use python3 for the post install script
While *some* systems alias python to python3 nowdays, this is
not true for eveything. Especially systems that can potentially
offer both python2 and python3.
According to both PEP 394 and PEP 441 its recommended to always
add the 3 in the shebang.
Diffstat (limited to 'build-aux')
-rw-r--r-- | build-aux/meson/post-install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/meson/post-install.py b/build-aux/meson/post-install.py index f84b1971f5..b66961c02b 100644 --- a/build-aux/meson/post-install.py +++ b/build-aux/meson/post-install.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python
+#!/usr/bin/env python3 import os
import sys
|