diff options
Diffstat (limited to 'devel/electron36/files/patch-v8_tools_run.py')
-rw-r--r-- | devel/electron36/files/patch-v8_tools_run.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/devel/electron36/files/patch-v8_tools_run.py b/devel/electron36/files/patch-v8_tools_run.py new file mode 100644 index 000000000000..c9b15f1c1347 --- /dev/null +++ b/devel/electron36/files/patch-v8_tools_run.py @@ -0,0 +1,11 @@ +--- v8/tools/run.py.orig 2024-10-16 21:35:16 UTC ++++ v8/tools/run.py +@@ -21,7 +21,7 @@ if cmd and cmd[0] == '--redirect-stdout': + kwargs = dict(stdout=subprocess.PIPE) + cmd = cmd[2:] + +-process = subprocess.Popen(cmd, **kwargs) ++process = subprocess.Popen(cmd, env={"LD_LIBRARY_PATH":"${WRKSRC}/out/Release"}, **kwargs) + stdout, _ = process.communicate() + if stdout_file: + with stdout_file.open('w') as f: |