diff options
author | Alistair Francis <alistair.francis@wdc.com> | 2020-01-04 10:03:17 -0800 |
---|---|---|
committer | Alistair Francis <alistair.francis@wdc.com> | 2020-03-03 15:52:09 -0800 |
commit | 4f88b380978e6c81765cbae9fd742590dbec3466 (patch) | |
tree | 12ce90ea7a0b23f382a34b35163c3dcdd548b834 /conform/list-header-symbols.py | |
parent | c014359a7d5154f295152ec4b7f422cc537bd84e (diff) | |
download | glibc-4f88b380978e6c81765cbae9fd742590dbec3466.tar.gz glibc-4f88b380978e6c81765cbae9fd742590dbec3466.tar.xz glibc-4f88b380978e6c81765cbae9fd742590dbec3466.zip |
Convert Python scripts to Python 3
Change all of the #! lines in Python scripts that are called from Makefiles to reference /usr/bin/python3. All of the scripts called from Makefiles are already run with Python 3, so let's make sure they are explicitly using Python 3 if called manually.
Diffstat (limited to 'conform/list-header-symbols.py')
-rw-r--r-- | conform/list-header-symbols.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conform/list-header-symbols.py b/conform/list-header-symbols.py index e43c12ec40..bfa463a303 100644 --- a/conform/list-header-symbols.py +++ b/conform/list-header-symbols.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # Print a list of symbols exported by some headers that would # otherwise be in the user's namespace. # Copyright (C) 2018-2020 Free Software Foundation, Inc. |