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

Unified Diff: chrome/strip_nacl_irt.py

Issue 8545001: Revert 109774 - Fix slash direction of strip command. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month 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: chrome/strip_nacl_irt.py
===================================================================
--- chrome/strip_nacl_irt.py (revision 109774)
+++ chrome/strip_nacl_irt.py (working copy)
@@ -40,16 +40,14 @@
}.get(sys.platform, 'linux')
if platform in ['arm', 'arm-thumb2']:
cmd = [
- os.path.join(SRC_DIR, 'native_client', 'toolchain',
- 'pnacl_linux_x86_64_newlib', 'bin',
- platform2 + '-strip'),
+ '../native_client/toolchain/pnacl_linux_x86_64_newlib/bin/' +
+ platform2 + '-strip',
'--strip-debug', src, '-o', dst
]
else:
cmd = [
- os.path.join(SRC_DIR, 'native_client', 'toolchain',
- cplatform + '_x86_newlib', 'bin',
- platform2 + '-nacl-strip'),
+ '../native_client/toolchain/' + cplatform + '_x86_newlib/bin/' +
+ platform2 + '-nacl-strip',
'--strip-debug', src, '-o', dst
]
print 'Running: ' + ' '.join(cmd)
« 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