diff options
Diffstat (limited to 'net-misc/warpinator/files')
-rw-r--r-- | net-misc/warpinator/files/warpinator-system-paths.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net-misc/warpinator/files/warpinator-system-paths.patch b/net-misc/warpinator/files/warpinator-system-paths.patch new file mode 100644 index 00000000..45228202 --- /dev/null +++ b/net-misc/warpinator/files/warpinator-system-paths.patch @@ -0,0 +1,21 @@ +diff -Nur a/src/warpinator-launch.py b/src/warpinator-launch.py +--- a/src/warpinator-launch.py 2023-10-16 18:26:49.000000000 +0100 ++++ b/src/warpinator-launch.py 2023-11-13 22:05:06.499787499 +0000 +@@ -135,7 +135,7 @@ + + launch_args = [] + +- launch_args += ["/bin/bwrap"] ++ launch_args += ["/usr/bin/bwrap"] + launch_args += ["--ro-bind", "/", "/"] + launch_args += ["--dev", "/dev"] + launch_args += ["--bind", rundir + "/dconf", rundir + "/dconf"] +@@ -156,7 +156,7 @@ + launch_args += ["--die-with-parent"] + + # launch_args += ["/bin/sh"] +- launch_args += ["/bin/python3", warpinator_path] ++ launch_args += ["/usr/bin/python3", warpinator_path] + + ret = 0 + |