diff options
author | Rene Ladan <rene@FreeBSD.org> | 2022-02-20 11:35:15 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2022-02-20 11:42:02 +0000 |
commit | a23dfd214ae04e8b4d116ca6411570b684eb5ed6 (patch) | |
tree | a42703b6563673398eee97ae6ad4d01eafd77738 /www/chromium/files/patch-v8_tools_run.py | |
parent | 9341f0aca4ecea11124957da5ea6384640745e43 (diff) |
Diffstat (limited to 'www/chromium/files/patch-v8_tools_run.py')
-rw-r--r-- | www/chromium/files/patch-v8_tools_run.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/www/chromium/files/patch-v8_tools_run.py b/www/chromium/files/patch-v8_tools_run.py new file mode 100644 index 000000000000..514638c4b108 --- /dev/null +++ b/www/chromium/files/patch-v8_tools_run.py @@ -0,0 +1,11 @@ +--- v8/tools/run.py.orig 2022-02-07 13:39:41 UTC ++++ v8/tools/run.py +@@ -11,7 +11,7 @@ from __future__ import print_function + import subprocess + import sys + +-result = subprocess.call(sys.argv[1:]) ++sys.exit(subprocess.call(sys.argv[1:], env={"LD_LIBRARY_PATH":"${WRKSRC}/out/Release"})) + if result != 0: + # Windows error codes such as 0xC0000005 and 0xC0000409 are much easier + # to recognize and differentiate in hex. |