summarylogtreecommitdiffstats
path: root/fix_compiler.patch
diff options
context:
space:
mode:
Diffstat (limited to 'fix_compiler.patch')
-rw-r--r--fix_compiler.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/fix_compiler.patch b/fix_compiler.patch
new file mode 100644
index 000000000000..e0e8a1f0b221
--- /dev/null
+++ b/fix_compiler.patch
@@ -0,0 +1,11 @@
+--- ccompiler.py 2019-01-31 20:54:00.000000000 +0000
++++ _ccompiler.py 2019-02-09 21:32:04.270976061 +0000
+@@ -639,7 +639,7 @@
+ return version
+
+ try:
+- output = subprocess.check_output(version_cmd)
++ output = subprocess.check_output(version_cmd, stderr=subprocess.STDOUT)
+ except subprocess.CalledProcessError as exc:
+ output = exc.output
+ status = exc.returncode