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

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

Issue 14795012: [Android] Pass -p to mkdir commands (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 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 | « build/android/gyp/create_device_library_links.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/gyp/push_libraries.py
diff --git a/build/android/gyp/push_libraries.py b/build/android/gyp/push_libraries.py
index a8fbc0ce0e8fb590a9942f950e6f62acd3ee48a1..b94d6b5ebf800e6c527a9fdff00a9d47722948c4 100755
--- a/build/android/gyp/push_libraries.py
+++ b/build/android/gyp/push_libraries.py
@@ -35,7 +35,7 @@ def DoPush(options):
def Push():
if needs_directory:
- adb.RunShellCommand('mkdir ' + options.device_dir)
+ adb.RunShellCommand('mkdir -p ' + options.device_dir)
needs_directory[:] = [] # = False
adb.PushIfNeeded(host_path, device_path)
« no previous file with comments | « build/android/gyp/create_device_library_links.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698