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

Unified Diff: build/android/gyp/gcc_preprocess.py

Issue 106923002: Don't use sys.exit() in build_utils.CheckCallDie(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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
Index: build/android/gyp/gcc_preprocess.py
diff --git a/build/android/gyp/gcc_preprocess.py b/build/android/gyp/gcc_preprocess.py
index d4e30fc5fe3e29e49f4aa11a030b81ebb42624dd..25192546053e181d35322a0d34887dd4dbe280a6 100755
--- a/build/android/gyp/gcc_preprocess.py
+++ b/build/android/gyp/gcc_preprocess.py
@@ -27,7 +27,7 @@ def DoGcc(options):
options.template
])
- build_utils.CheckCallDie(gcc_cmd)
+ build_utils.CheckOutput(gcc_cmd)
def main(argv):

Powered by Google App Engine
This is Rietveld 408576698