Index: pylib/gyp/mac_tool.py |
diff --git a/pylib/gyp/mac_tool.py b/pylib/gyp/mac_tool.py |
index 3a28a17b949d5abab06a40455734c916031e481c..77116de875c898a2fdfbf9f08182aa1432f9aafc 100755 |
--- a/pylib/gyp/mac_tool.py |
+++ b/pylib/gyp/mac_tool.py |
@@ -201,7 +201,7 @@ class MacTool(object): |
def ExecFilterLibtool(self, *cmd_list): |
"""Calls libtool and filters out 'libtool: file: foo.o has no symbols'.""" |
Nico
2013/10/10 19:56:01
change the comment to say '/path/to/libtool: file:
|
- libtool_re = re.compile(r'^libtool: file: .* has no symbols$') |
+ libtool_re = re.compile(r'^.*libtool: file: .* has no symbols$') |
libtoolout = subprocess.Popen(cmd_list, stderr=subprocess.PIPE) |
_, err = libtoolout.communicate() |
for line in err.splitlines(): |