From 4f88b380978e6c81765cbae9fd742590dbec3466 Mon Sep 17 00:00:00 2001 From: Alistair Francis Date: Sat, 4 Jan 2020 10:03:17 -0800 Subject: 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. --- math/gen-libm-test.py | 2 +- math/gen-tgmath-tests.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'math') diff --git a/math/gen-libm-test.py b/math/gen-libm-test.py index ec26339..0142c0f 100755 --- a/math/gen-libm-test.py +++ b/math/gen-libm-test.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # Generate tests for libm functions. # Copyright (C) 2018-2020 Free Software Foundation, Inc. # This file is part of the GNU C Library. diff --git a/math/gen-tgmath-tests.py b/math/gen-tgmath-tests.py index ef207dd..c225b64 100755 --- a/math/gen-tgmath-tests.py +++ b/math/gen-tgmath-tests.py @@ -1,4 +1,4 @@ -#!/usr/bin/python +#!/usr/bin/python3 # Generate tests for macros. # Copyright (C) 2017-2020 Free Software Foundation, Inc. # This file is part of the GNU C Library. -- cgit v1.1