mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 18:16:48 -04:00
Changes: https://v8.dev/blog/v8-release-96 https://chromium.googlesource.com/v8/v8.git/+log/refs/heads/9.6-lkgr https://github.com/v8/v8/commits/9.6-lkgr
11 lines
456 B
Python
11 lines
456 B
Python
--- build/gn_run_binary.py.orig 2019-07-24 18:58:02 UTC
|
|
+++ build/gn_run_binary.py
|
|
@@ -24,7 +24,7 @@ if not os.path.isabs(path):
|
|
# The rest of the arguments are passed directly to the executable.
|
|
args = [path] + sys.argv[2:]
|
|
|
|
-ret = subprocess.call(args)
|
|
+ret = subprocess.call(args, env={"CHROME_EXE_PATH":"${WRKSRC}/out/Release/chrome"})
|
|
if ret != 0:
|
|
if ret <= -100:
|
|
# Windows error codes such as 0xC0000005 and 0xC0000409 are much easier to
|