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

Unified Diff: chrome/strip_nacl_irt.py

Issue 8539042: Fix slash direction of strip command. (Closed) Base URL: svn://chrome-svn/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 109772)
+++ chrome/strip_nacl_irt.py (working copy)
@@ -40,14 +40,16 @@
}.get(sys.platform, 'linux')
if platform in ['arm', 'arm-thumb2']:
cmd = [
- '../native_client/toolchain/pnacl_linux_x86_64_newlib/bin/' +
- platform2 + '-strip',
+ os.path.join(SRC_DIR, 'native_client', 'toolchain',
+ 'pnacl_linux_x86_64_newlib', 'bin',
+ platform2 + '-strip'),
Ryan Sleevi 2011/11/12 04:29:46 nit: Alignment (this by two spaces, previous line
'--strip-debug', src, '-o', dst
]
else:
cmd = [
- '../native_client/toolchain/' + cplatform + '_x86_newlib/bin/' +
- platform2 + '-nacl-strip',
+ os.path.join(SRC_DIR, '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