This is the standard shebang we should always be using, as it plays nicely with virtual environments and our desire to always be using a specific python interpreter in our environments.
(It also makes sure I can find all of the python scripts in our tree easily.) Signed-off-by: John Snow <js...@redhat.com> --- roms/edk2-build.py | 2 +- scripts/cpu-x86-uarch-abi.py | 2 +- scripts/userfaultfd-wrlat.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/roms/edk2-build.py b/roms/edk2-build.py index e564765aaa7..8dc38700394 100755 --- a/roms/edk2-build.py +++ b/roms/edk2-build.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 """ build helper script for edk2, see https://gitlab.com/kraxel/edk2-build-config diff --git a/scripts/cpu-x86-uarch-abi.py b/scripts/cpu-x86-uarch-abi.py index 7360e55c6e0..5a052083eea 100644 --- a/scripts/cpu-x86-uarch-abi.py +++ b/scripts/cpu-x86-uarch-abi.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 # # SPDX-License-Identifier: GPL-2.0-or-later # diff --git a/scripts/userfaultfd-wrlat.py b/scripts/userfaultfd-wrlat.py index 0684be4e044..5f36c7af565 100755 --- a/scripts/userfaultfd-wrlat.py +++ b/scripts/userfaultfd-wrlat.py @@ -1,4 +1,4 @@ -#!/usr/bin/python3 +#!/usr/bin/env python3 # # userfaultfd-wrlat Summarize userfaultfd write fault latencies. # Events are continuously accumulated for the -- 2.48.1