diff mbox series

scripts: fix buildstats diff/summary hard bound to host python3

Message ID 20230503155718.40698-1-paul.gortmaker@windriver.com
State Accepted, archived
Commit f1b11b83a6dd991f393940741c930691463e6d53
Headers show
Series scripts: fix buildstats diff/summary hard bound to host python3 | expand

Commit Message

Paul Gortmaker May 3, 2023, 3:57 p.m. UTC
Somehow these two got left behind and hence on older hosts that
are using buildtools for a newer python - they will still fail.

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
diff mbox series

Patch

diff --git a/scripts/buildstats-diff b/scripts/buildstats-diff
index 2f6498ab6743..c9aa76a8fafc 100755
--- a/scripts/buildstats-diff
+++ b/scripts/buildstats-diff
@@ -1,4 +1,4 @@ 
-#!/usr/bin/python3
+#!/usr/bin/env python3
 #
 # Script for comparing buildstats from two different builds
 #
diff --git a/scripts/buildstats-summary b/scripts/buildstats-summary
index f521d78650b4..b10c671b29bd 100755
--- a/scripts/buildstats-summary
+++ b/scripts/buildstats-summary
@@ -1,4 +1,4 @@ 
-#! /usr/bin/python3
+#!/usr/bin/env python3
 #
 # Dump a summary of the specified buildstats to the terminal, filtering and
 # sorting by walltime.