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

Unified Diff: build/build_nexe.py

Issue 160613003: Fixed issue with applying tls_edit in windows (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 6 years, 10 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/build_nexe.py
diff --git a/build/build_nexe.py b/build/build_nexe.py
index fc4ec084102d492116bb97d975f731e603b4c6db..a482326e931b9fb00f3f78f80200efa15f42bbe9 100644
--- a/build/build_nexe.py
+++ b/build/build_nexe.py
@@ -593,7 +593,7 @@ class Builder(object):
raise Error('FAILED with %d: %s' % (err, ' '.join(cmd_line)))
if self.tls_edit is not None:
- tls_edit_cmd = [self.tls_edit, link_out, out]
+ tls_edit_cmd = [FixPath(self.tls_edit), link_out, out]
tls_edit_err = self.Run(tls_edit_cmd, out)
if tls_edit_err:
raise Error('FAILED with %d: %s' % (err, ' '.join(tls_edit_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