Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Unified Diff: build/config/mac/compile_ib_files.py

Issue 2947393002: compile_ib_files.py: Wait for subprocess.Popen() to finish. (Closed)
Patch Set: Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/mac/compile_ib_files.py
diff --git a/build/config/mac/compile_ib_files.py b/build/config/mac/compile_ib_files.py
index 4923d82984cefadb4d2c4e1c579b73a8175c416f..6d78f39c157c3bbadf20bbdb32a9083f21e3b7d9 100644
--- a/build/config/mac/compile_ib_files.py
+++ b/build/config/mac/compile_ib_files.py
@@ -41,6 +41,7 @@ def main():
ibtool_section_re = re.compile(r'/\*.*\*/')
ibtool_re = re.compile(r'.*note:.*is clipping its content')
ibtoolout = subprocess.Popen(ibtool_args, stdout=subprocess.PIPE)
Robert Sesek 2017/06/22 15:13:04 Any reason to not use subprocess.check_output?
+ ibtoolout.wait()
current_section_header = None
for line in ibtoolout.stdout:
if ibtool_section_re.match(line):
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698