Index: pylib/gyp/win_tool.py |
diff --git a/pylib/gyp/win_tool.py b/pylib/gyp/win_tool.py |
index 331a655957c8dd71091366cf923f7a0b91441535..1e45955177c3bc1deb4c6168c6b3e550f65bb022 100644 |
--- a/pylib/gyp/win_tool.py |
+++ b/pylib/gyp/win_tool.py |
@@ -58,8 +58,7 @@ class WinTool(object): |
popen = subprocess.Popen(args, |
stdout=subprocess.PIPE, |
stderr=subprocess.STDOUT) |
- out, _ = popen.communicate() |
- for line in out.splitlines(): |
+ for line in popen.stdout: |
if not line.startswith(' Creating library '): |
sys.stdout.write(line) |
return popen.returncode |