summaryrefslogtreecommitdiffstats
path: root/source/xap/mozilla-thunderbird/firefox.node.py.patch
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2019-11-19 06:15:35 +0000
committer Eric Hameleers <alien@slackware.com>2019-11-19 17:59:50 +0100
commit7ee27456e2684ea8fc924497c44049dd1ad15925 (patch)
tree5db715363fb47527d22cceea2e75ce33cedc3924 /source/xap/mozilla-thunderbird/firefox.node.py.patch
parentfa3f92ac782f8531079bf9584fe6714fc3d7c5ed (diff)
downloadcurrent-7ee27456e2684ea8fc924497c44049dd1ad15925.tar.gz
current-7ee27456e2684ea8fc924497c44049dd1ad15925.tar.xz
Tue Nov 19 06:15:35 UTC 201920191119061535
d/rust-1.39.0-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/xap/mozilla-thunderbird/firefox.node.py.patch')
-rw-r--r--source/xap/mozilla-thunderbird/firefox.node.py.patch46
1 files changed, 46 insertions, 0 deletions
diff --git a/source/xap/mozilla-thunderbird/firefox.node.py.patch b/source/xap/mozilla-thunderbird/firefox.node.py.patch
new file mode 100644
index 000000000..11e2b843b
--- /dev/null
+++ b/source/xap/mozilla-thunderbird/firefox.node.py.patch
@@ -0,0 +1,46 @@
+
+diff --git a/python/mozbuild/mozbuild/action/node.py b/python/mozbuild/mozbuild/action/node.py
+--- a/python/mozbuild/mozbuild/action/node.py
++++ b/python/mozbuild/mozbuild/action/node.py
+@@ -47,24 +47,35 @@ def execute_node_cmd(node_cmd_list):
+ printed to stderr instead.
+ """
+
+ try:
+ printable_cmd = ' '.join(pipes.quote(arg) for arg in node_cmd_list)
+ print('Executing "{}"'.format(printable_cmd), file=sys.stderr)
+ sys.stderr.flush()
+
+- output = subprocess.check_output(node_cmd_list)
++ # We need to redirect stderr to a pipe because
++ # https://github.com/nodejs/node/issues/14752 causes issues with make.
++ proc = subprocess.Popen(
++ node_cmd_list, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
++
++ stdout, stderr = proc.communicate()
++ retcode = proc.wait()
++
++ if retcode != 0:
++ print(stderr, file=sys.stderr)
++ sys.stderr.flush()
++ sys.exit(retcode)
+
+ # Process the node script output
+ #
+ # XXX Starting with an empty list means that node scripts can
+ # (intentionally or inadvertently) remove deps. Do we want this?
+ deps = []
+- for line in output.splitlines():
++ for line in stdout.splitlines():
+ if 'dep:' in line:
+ deps.append(line.replace('dep:', ''))
+ else:
+ print(line, file=sys.stderr)
+ sys.stderr.flush()
+
+ return set(deps)
+
+
+
+
+