summarylogtreecommitdiffstats
path: root/fix_compiler.patch
blob: 271ea016c55ecc55fbbcc4703e69d2a332490067 (plain)
1
2
3
4
5
6
7
8
9
10
11
--- ccompiler.py
+++ ccompiler.py
@@ -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