diff options
| author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2023-05-03 11:57:18 -0400 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-05-05 11:07:26 +0100 |
| commit | e9980b8b38e92ce2a4eb2b7a216d0bc42ca656b7 (patch) | |
| tree | aa9f3aface215ab5eef0a5c0072840f87aa8359f | |
| parent | 735e6b4278e2d4388ba86b871c9fb7054d249388 (diff) | |
| download | poky-e9980b8b38e92ce2a4eb2b7a216d0bc42ca656b7.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: f1b11b83a6dd991f393940741c930691463e6d53)
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>
| -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. |
