blob: d5dc0dcc83d788d308ece1031b2fbb0141fd1e92 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
From 80a8aeec376621b633634a092aa13e795de2fbce Mon Sep 17 00:00:00 2001
From: Ron Nazarov <ron@noisytoot.org>
Date: Sat, 14 Feb 2026 18:13:21 +0000
Subject: [PATCH 1/4] Replace "#!/usr/bin/python3" with "#!/usr/bin/env
python3"
Makes this work on Guix, which has /usr/bin/env but does not install
python3 into /usr/bin.
Change-Id: I5da9d2e975f6465ce5eea27476152afffe301112
Signed-off-by: Ron Nazarov <ron@noisytoot.org>
---
finalimage.py | 2 +-
gen_shellcode.py | 2 +-
generatedelta.py | 2 +-
mfsutil.py | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/finalimage.py b/finalimage.py
index c77f5f4..e3fbd01 100755
--- a/finalimage.py
+++ b/finalimage.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-only
import argparse
diff --git a/gen_shellcode.py b/gen_shellcode.py
index 1d8fbfb..0e1130a 100755
--- a/gen_shellcode.py
+++ b/gen_shellcode.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-only
import argparse
diff --git a/generatedelta.py b/generatedelta.py
index 9153d61..0b35c1f 100755
--- a/generatedelta.py
+++ b/generatedelta.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-only
import argparse
diff --git a/mfsutil.py b/mfsutil.py
index 246d213..7171e5f 100755
--- a/mfsutil.py
+++ b/mfsutil.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
# SPDX-License-Identifier: GPL-2.0-only
# This code is based on MFSUtil by Youness Alaoui (see `doc/LICENSE.orig` for original copyright)
--
2.52.0
|