aboutsummaryrefslogtreecommitdiffstats
path: root/community/chromium/gn-bootstrap-remove-sysroot-related-options.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2018-12-19 15:46:24 +0100
committerNatanael Copa <ncopa@alpinelinux.org>2018-12-19 21:01:04 +0100
commite2485db796656beda0c45fc60aed2bb66d36070f (patch)
treeff82059197063498fe3e355b683776ff8a67b76f /community/chromium/gn-bootstrap-remove-sysroot-related-options.patch
parentc40c42dae6e2da6c0bb0ce52f23dad837b330229 (diff)
downloadaports-e2485db796656beda0c45fc60aed2bb66d36070f.tar.bz2
aports-e2485db796656beda0c45fc60aed2bb66d36070f.tar.xz
community/chromium: upgrade to 71.0.3578.98
Diffstat (limited to 'community/chromium/gn-bootstrap-remove-sysroot-related-options.patch')
-rw-r--r--community/chromium/gn-bootstrap-remove-sysroot-related-options.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/community/chromium/gn-bootstrap-remove-sysroot-related-options.patch b/community/chromium/gn-bootstrap-remove-sysroot-related-options.patch
new file mode 100644
index 0000000000..9e542bce36
--- /dev/null
+++ b/community/chromium/gn-bootstrap-remove-sysroot-related-options.patch
@@ -0,0 +1,25 @@
+See: https://chromium.googlesource.com/chromium/src/tools/gn/+/6630c2e334d7bc179e95a3d543a8eca3201d6725%5E%21/#F0
+diff --git a/bootstrap/bootstrap.py b/bootstrap/bootstrap.py
+index 261fddd..1945852 100755
+--- tools/gn/bootstrap/bootstrap.py
++++ tools/gn/bootstrap/bootstrap.py
+@@ -46,10 +46,6 @@
+ '--build-path',
+ help='The directory in which to build gn, '
+ 'relative to the src directory. (eg. out/Release)')
+- parser.add_option(
+- '--with-sysroot',
+- action='store_true',
+- help='Download and build with the Debian sysroot.')
+ parser.add_option('-v', '--verbose', help='ignored')
+ parser.add_option(
+ '--skip-generate-buildfiles',
+@@ -76,8 +72,6 @@
+ '--no-last-commit-position',
+ '--out-path=' + gn_build_dir,
+ ]
+- if not options.with_sysroot:
+- cmd.append('--no-sysroot')
+ if options.debug:
+ cmd.append('--debug')
+ subprocess.check_call(cmd)