diff options
| author | Uday Shankar <ushankar@purestorage.com> | 2025-02-10 18:11:54 -0700 |
|---|---|---|
| committer | Masahiro Yamada <masahiroy@kernel.org> | 2025-03-15 21:19:44 +0900 |
| commit | 9d702bb1d3c03bb78d4fd2b3424169e3ef4cd402 (patch) | |
| tree | aeabe2927070da9be6fa91024e2964159402e8c5 /scripts/tracing/draw_functrace.py | |
| parent | ac954145e1ee3f72033161cbe4ac0b16b5354ae7 (diff) | |
scripts: make python shebangs specific about desired version
The RPM packaging tools like to make sure that all packaged python
scripts have version-unambiguous shebangs. Be more specific about the
desired python version in a couple of places to avoid having to disable
these checks in make rpm-pkg.
Signed-off-by: Uday Shankar <ushankar@purestorage.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/tracing/draw_functrace.py')
| -rwxr-xr-x | scripts/tracing/draw_functrace.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tracing/draw_functrace.py b/scripts/tracing/draw_functrace.py index 42fa87300941..97594b65f8ce 100755 --- a/scripts/tracing/draw_functrace.py +++ b/scripts/tracing/draw_functrace.py @@ -1,4 +1,4 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # SPDX-License-Identifier: GPL-2.0-only """ |