aboutsummaryrefslogtreecommitdiff
path: root/pylibfdt
diff options
context:
space:
mode:
authorLuca Weiss <luca@z3ntu.xyz>2019-09-07 17:25:31 +0200
committerDavid Gibson <david@gibson.dropbear.id.au>2019-09-09 15:20:55 +1000
commitb111122ea5eb15325c493dde43fdf94732c97d44 (patch)
treee0476d8ec32e250c81e021685eb783acb5391f58 /pylibfdt
parent60e0db3d65a1218b0d5a29474e769f28a18e3ca6 (diff)
downloaddtc-b111122ea5eb15325c493dde43fdf94732c97d44.zip
dtc-b111122ea5eb15325c493dde43fdf94732c97d44.tar.gz
dtc-b111122ea5eb15325c493dde43fdf94732c97d44.tar.bz2
pylibfdt: use python3 shebang
The default Python version for pylibfdt is already Python 3 but if called without specifiying an interpreter, the setup.py script gets called with Python 2. It's of course still possible to call setup.py with python2 directly. Signed-off-by: Luca Weiss <luca@z3ntu.xyz> Message-Id: <20190907152530.25102-1-luca@z3ntu.xyz> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'pylibfdt')
-rwxr-xr-xpylibfdt/setup.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pylibfdt/setup.py b/pylibfdt/setup.py
index a00bf8b..53f2bef 100755
--- a/pylibfdt/setup.py
+++ b/pylibfdt/setup.py
@@ -1,6 +1,9 @@
-#!/usr/bin/env python2
+#!/usr/bin/env python3
# SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause)
+# While Python 3 is the default, it's also possible to invoke
+# this setup.py script with Python 2.
+
"""
setup.py file for SWIG libfdt
Copyright (C) 2017 Google, Inc.