Submitted by: cpm Obtained from: https://github.com/cpu82/freebsd-chromium MFH: 2018Q1 Security: https://vuxml.freebsd.org/freebsd/e264e74e-ffe0-11e7-8b91-e8e0b747a45a.html Security: https://vuxml.freebsd.org/freebsd/1d951e85-ffdb-11e7-8b91-e8e0b747a45a.html Security: https://vuxml.freebsd.org/freebsd/82894193-ffd4-11e7-8b91-e8e0b747a45a.html Security: https://vuxml.freebsd.org/freebsd/f8e72cd4-c66a-11e7-bb17-e8e0b747a45a.html Security: https://vuxml.freebsd.org/freebsd/3cd46257-bbc5-11e7-a3bc-e8e0b747a45a.html Security: https://vuxml.freebsd.org/freebsd/a692bffe-b6ad-11e7-a1c2-e8e0b747a45a.html
11 lines
452 B
Python
11 lines
452 B
Python
--- build/gn_run_binary.py.orig 2017-12-30 01:00:32.419195000 +0100
|
|
+++ build/gn_run_binary.py 2017-12-30 01:01:14.497716000 +0100
|
|
@@ -19,7 +19,7 @@
|
|
# 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:
|
|
print '%s failed with exit code %d' % (sys.argv[1], ret)
|
|
sys.exit(ret)
|