aboutsummaryrefslogtreecommitdiff
path: root/scripts/gcc-wrapper.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/gcc-wrapper.py')
-rwxr-xr-xscripts/gcc-wrapper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gcc-wrapper.py b/scripts/gcc-wrapper.py
index 583a5cef..991bf313 100755
--- a/scripts/gcc-wrapper.py
+++ b/scripts/gcc-wrapper.py
@@ -80,7 +80,7 @@ def run_gcc():
proc = subprocess.Popen(args, stderr=subprocess.PIPE)
for line in proc.stderr:
print line,
- interpret_warning(line)
+# interpret_warning(line)
result = proc.wait()
except OSError as e: