| Index: build/android/pylib/android_commands.py
|
| diff --git a/build/android/pylib/android_commands.py b/build/android/pylib/android_commands.py
|
| index d6f9d326ba9c0d92b4a456e4c89a167ee8cac151..1ed1877e26a1b77c659e269879df0779564d1ad0 100644
|
| --- a/build/android/pylib/android_commands.py
|
| +++ b/build/android/pylib/android_commands.py
|
| @@ -694,8 +694,8 @@ class AndroidCommands(object):
|
| assert os.path.exists(run_pie_dist_path), 'Please build run_pie'
|
| # The PIE loader must be pushed manually (i.e. no PushIfNeeded) because
|
| # PushIfNeeded requires md5sum and md5sum requires the wrapper as well.
|
| - command = 'push %s %s' % (run_pie_dist_path, PIE_WRAPPER_PATH)
|
| - assert _HasAdbPushSucceeded(self._adb.SendCommand(command))
|
| + adb_command = 'push %s %s' % (run_pie_dist_path, PIE_WRAPPER_PATH)
|
| + assert _HasAdbPushSucceeded(self._adb.SendCommand(adb_command))
|
| self._pie_wrapper = PIE_WRAPPER_PATH
|
|
|
| if self._pie_wrapper:
|
|
|