diff options
Diffstat (limited to 'meta-oe/recipes-devtools/pahole/files/0001-Use-usr-bin-env-python3-instead-of-just-usr-bin-pyth.patch')
-rw-r--r-- | meta-oe/recipes-devtools/pahole/files/0001-Use-usr-bin-env-python3-instead-of-just-usr-bin-pyth.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/pahole/files/0001-Use-usr-bin-env-python3-instead-of-just-usr-bin-pyth.patch b/meta-oe/recipes-devtools/pahole/files/0001-Use-usr-bin-env-python3-instead-of-just-usr-bin-pyth.patch new file mode 100644 index 0000000000..7dc18d7aa2 --- /dev/null +++ b/meta-oe/recipes-devtools/pahole/files/0001-Use-usr-bin-env-python3-instead-of-just-usr-bin-pyth.patch | |||
@@ -0,0 +1,34 @@ | |||
1 | From 436163ab845c263312cf3d4717a43727cf5f0747 Mon Sep 17 00:00:00 2001 | ||
2 | From: Matteo Croce <mcroce@microsoft.com> | ||
3 | Date: Wed, 15 Sep 2021 17:54:01 +0200 | ||
4 | Subject: [PATCH] Use /usr/bin/env python3 instead of just /usr/bin/python3 | ||
5 | |||
6 | Upstream-Status: Inappropriate [OE specific] | ||
7 | --- | ||
8 | ostra/ostra-cg | 2 +- | ||
9 | ostra/python/ostra.py | 2 +- | ||
10 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
11 | |||
12 | diff --git a/ostra/ostra-cg b/ostra/ostra-cg | ||
13 | index 52c902e..8142e67 100755 | ||
14 | --- a/ostra/ostra-cg | ||
15 | +++ b/ostra/ostra-cg | ||
16 | @@ -1,4 +1,4 @@ | ||
17 | -#!/usr/bin/python3 | ||
18 | +#!/usr/bin/env python3 | ||
19 | # ostra-cg - generate callgraphs from encoded trace | ||
20 | # | ||
21 | # Arnaldo Carvalho de Melo <acme@redhat.com> | ||
22 | diff --git a/ostra/python/ostra.py b/ostra/python/ostra.py | ||
23 | index 86fe079..9bb5ad1 100755 | ||
24 | --- a/ostra/python/ostra.py | ||
25 | +++ b/ostra/python/ostra.py | ||
26 | @@ -1,4 +1,4 @@ | ||
27 | -#!/usr/bin/python3 | ||
28 | +#!/usr/bin/env python3 | ||
29 | # | ||
30 | # Copyright (C) 2005, 2006, 2007 Arnaldo Carvalho de Melo | ||
31 | # | ||
32 | -- | ||
33 | 2.31.1 | ||
34 | |||