2018-05-11 13:56:01 +00:00
|
|
|
Use python3 for installed executable python scripts.
|
|
|
|
|
|
|
|
Fedora is a Python3-only distribution:
|
|
|
|
https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3
|
|
|
|
|
|
|
|
This fixes build failures where builders may strictly enforce only
|
|
|
|
python3 during a transitional phase.
|
|
|
|
|
|
|
|
Author: Carlos O'Donell <carlos@redhat.com>
|
|
|
|
|
2022-01-04 14:54:08 +00:00
|
|
|
|
2023-01-12 03:26:53 +00:00
|
|
|
|
2018-05-11 13:56:01 +00:00
|
|
|
diff --git a/benchtests/scripts/compare_bench.py b/benchtests/scripts/compare_bench.py
|
2023-01-12 03:26:53 +00:00
|
|
|
index 9a91c2649106a740..9f1ea9d85f4b833a 100755
|
2018-05-11 13:56:01 +00:00
|
|
|
--- a/benchtests/scripts/compare_bench.py
|
|
|
|
+++ b/benchtests/scripts/compare_bench.py
|
2023-01-12 03:26:53 +00:00
|
|
|
@@ -1,5 +1,5 @@
|
2018-05-11 13:56:01 +00:00
|
|
|
-#!/usr/bin/python
|
2023-01-12 03:26:53 +00:00
|
|
|
-# Copyright (C) 2015-2023 Free Software Foundation, Inc.
|
2018-05-11 13:56:01 +00:00
|
|
|
+#!/usr/bin/python3
|
2023-01-12 03:26:53 +00:00
|
|
|
+# Copyright (C) 2015-2022 Free Software Foundation, Inc.
|
2018-05-11 13:56:01 +00:00
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
#
|
2023-01-12 03:26:53 +00:00
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
2018-05-11 13:56:01 +00:00
|
|
|
diff --git a/benchtests/scripts/import_bench.py b/benchtests/scripts/import_bench.py
|
2023-01-12 03:26:53 +00:00
|
|
|
index 92d9dc4fbaf08382..698c4ff81b13f697 100644
|
2018-05-11 13:56:01 +00:00
|
|
|
--- a/benchtests/scripts/import_bench.py
|
|
|
|
+++ b/benchtests/scripts/import_bench.py
|
2023-01-12 03:26:53 +00:00
|
|
|
@@ -1,5 +1,5 @@
|
2018-05-11 13:56:01 +00:00
|
|
|
-#!/usr/bin/python
|
2023-01-12 03:26:53 +00:00
|
|
|
-# Copyright (C) 2015-2023 Free Software Foundation, Inc.
|
2018-05-11 13:56:01 +00:00
|
|
|
+#!/usr/bin/python3
|
2023-01-12 03:26:53 +00:00
|
|
|
+# Copyright (C) 2015-2022 Free Software Foundation, Inc.
|
2018-05-11 13:56:01 +00:00
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
#
|
2023-01-12 03:26:53 +00:00
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|