1
0
Files
nodejs-electron/node-system-icu.patch
Dominik Heidler 52df3eda55 Accepting request 1005070 from home:dziobian:gulgul-ultron:19
Package Electron 20.
Please check if it works with element-desktop (my prior is that it should as upstream already uses this version)

OBS-URL: https://build.opensuse.org/request/show/1005070
OBS-URL: https://build.opensuse.org/package/show/devel:languages:nodejs/nodejs-electron?expand=0&rev=33
2022-09-21 09:00:14 +00:00

13 lines
486 B
Diff

Do not try to configure electron's node against vendored ICU headers
--- a/electron/script/generate-config-gypi.py
+++ b/electron/script/generate-config-gypi.py
@@ -14,6 +14,7 @@
def run_node_configure(target_cpu):
configure = os.path.join(NODE_DIR, 'configure.py')
args = ['--dest-cpu', target_cpu]
+ args+= ['--with-intl=system-icu']
# Enabled in Chromium's V8, will be disabled on 32bit via
# common.gypi rules
args += ['--experimental-enable-pointer-compression']