diff options
Diffstat (limited to 'recipes-extended/xvisor/files/0001-build-use-usr-bin-env-for-python-scripts.patch')
-rw-r--r-- | recipes-extended/xvisor/files/0001-build-use-usr-bin-env-for-python-scripts.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/recipes-extended/xvisor/files/0001-build-use-usr-bin-env-for-python-scripts.patch b/recipes-extended/xvisor/files/0001-build-use-usr-bin-env-for-python-scripts.patch deleted file mode 100644 index 1e37c49e..00000000 --- a/recipes-extended/xvisor/files/0001-build-use-usr-bin-env-for-python-scripts.patch +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | From eb351ca63a86f53cfb18987284a1445d543dfe56 Mon Sep 17 00:00:00 2001 | ||
2 | From: Bruce Ashfield <bruce.ashfield@gmail.com> | ||
3 | Date: Mon, 29 Nov 2021 17:20:00 -0500 | ||
4 | Subject: [PATCH] build: use /usr/bin/env for python scripts | ||
5 | |||
6 | Without this, we break on hosts without /usr/bin/python | ||
7 | |||
8 | Upstream-Status: Inappropriate [embedded specific] | ||
9 | |||
10 | Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> | ||
11 | --- | ||
12 | tools/scripts/d2c.py | 2 +- | ||
13 | tools/scripts/memimg.py | 2 +- | ||
14 | 2 files changed, 2 insertions(+), 2 deletions(-) | ||
15 | |||
16 | diff --git a/tools/scripts/d2c.py b/tools/scripts/d2c.py | ||
17 | index b46a7bc4..0a6bce08 100755 | ||
18 | --- a/tools/scripts/d2c.py | ||
19 | +++ b/tools/scripts/d2c.py | ||
20 | @@ -1,4 +1,4 @@ | ||
21 | -#!/usr/bin/python | ||
22 | +#!/usr/bin/env python3 | ||
23 | #/** | ||
24 | # Copyright (c) 2013 Anup Patel. | ||
25 | # All rights reserved. | ||
26 | diff --git a/tools/scripts/memimg.py b/tools/scripts/memimg.py | ||
27 | index 423c9c33..ba2f06cb 100755 | ||
28 | --- a/tools/scripts/memimg.py | ||
29 | +++ b/tools/scripts/memimg.py | ||
30 | @@ -1,4 +1,4 @@ | ||
31 | -#!/usr/bin/python | ||
32 | +#!/usr/bin/env python3 | ||
33 | #/** | ||
34 | # Copyright (c) 2011 Anup Patel. | ||
35 | # All rights reserved. | ||
36 | -- | ||
37 | 2.19.1 | ||
38 | |||