| Index: build/android/strip_library_for_apk.py
|
| diff --git a/build/android/strip_library_for_apk.py b/build/android/strip_library_for_apk.py
|
| index f0cd08713a82b566776b012a6f10b68601205f60..9b526484f3e2bc14dd8bc592c13b39a214c81faa 100755
|
| --- a/build/android/strip_library_for_apk.py
|
| +++ b/build/android/strip_library_for_apk.py
|
| @@ -6,7 +6,6 @@
|
|
|
| import optparse
|
| import os
|
| -import subprocess
|
| import sys
|
|
|
| from pylib import build_utils
|
| @@ -16,7 +15,7 @@ def StripLibrary(android_strip, android_strip_args, library_path, output_path):
|
| strip_cmd = ([android_strip] +
|
| android_strip_args +
|
| ['-o', output_path, library_path])
|
| - subprocess.check_call(strip_cmd)
|
| + build_utils.CheckCallDie(strip_cmd)
|
|
|
|
|
| def main(argv):
|
|
|