diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2023-05-03 11:57:18 -0400 |
---|---|---|
committer | Steve Sakoman <steve@sakoman.com> | 2023-05-31 04:08:11 -1000 |
commit | 2c09ecfdc5ca1223370e88f1799c9f26f136c027 (patch) | |
tree | 1b7b0e52fb0ec07462f4ed81425de06e1ae3ec5b /scripts | |
parent | eeff6b4ec82662ca2ceb8a4b58e7a94bef25851d (diff) | |
download | poky-2c09ecfdc5ca1223370e88f1799c9f26f136c027.tar.gz |
scripts: fix buildstats diff/summary hard bound to host python3
Somehow these two got left behind and hence on older hosts that
are using buildtools for a newer python - they will still fail.
(From OE-Core rev: db3f62378c54ebdfbf5cccdba4c83f503372138f)
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit f1b11b83a6dd991f393940741c930691463e6d53)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/buildstats-diff | 2 | ||||
-rwxr-xr-x | scripts/buildstats-summary | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/buildstats-diff b/scripts/buildstats-diff index 2f6498ab67..c9aa76a8fa 100755 --- a/scripts/buildstats-diff +++ b/scripts/buildstats-diff | |||
@@ -1,4 +1,4 @@ | |||
1 | #!/usr/bin/python3 | 1 | #!/usr/bin/env python3 |
2 | # | 2 | # |
3 | # Script for comparing buildstats from two different builds | 3 | # Script for comparing buildstats from two different builds |
4 | # | 4 | # |
diff --git a/scripts/buildstats-summary b/scripts/buildstats-summary index f521d78650..b10c671b29 100755 --- a/scripts/buildstats-summary +++ b/scripts/buildstats-summary | |||
@@ -1,4 +1,4 @@ | |||
1 | #! /usr/bin/python3 | 1 | #!/usr/bin/env python3 |
2 | # | 2 | # |
3 | # Dump a summary of the specified buildstats to the terminal, filtering and | 3 | # Dump a summary of the specified buildstats to the terminal, filtering and |
4 | # sorting by walltime. | 4 | # sorting by walltime. |