diff options
author | Mikael Urankar <mikael@FreeBSD.org> | 2020-11-20 10:41:13 +0000 |
---|---|---|
committer | Mikael Urankar <mikael@FreeBSD.org> | 2020-11-20 10:41:13 +0000 |
commit | 9a4ce488e85c4b59c1d2acdfd23cb88b7e9ca198 (patch) | |
tree | 84f3b4638ccf347ba91572ef9f96440521ed236f /lang/v8/files/patch-build_gn__run__binary.py | |
parent | net/concourse-fly: Update to 6.7.1 (diff) |
lang/v8: Update to 8.7.220.23
PR: 213202
Reported by: many
Approved by: sunpoet (maintainer timeout)
Diffstat (limited to 'lang/v8/files/patch-build_gn__run__binary.py')
-rw-r--r-- | lang/v8/files/patch-build_gn__run__binary.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lang/v8/files/patch-build_gn__run__binary.py b/lang/v8/files/patch-build_gn__run__binary.py new file mode 100644 index 000000000000..d9e733834b4a --- /dev/null +++ b/lang/v8/files/patch-build_gn__run__binary.py @@ -0,0 +1,11 @@ +--- 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 |