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

Unified Diff: native_client_sdk/src/build_tools/build_sdk.py

Issue 11048024: [NaCl SDK] Fix PRESUBMIT.py on Windows. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 2 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 | « native_client_sdk/PRESUBMIT.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/build_tools/build_sdk.py
diff --git a/native_client_sdk/src/build_tools/build_sdk.py b/native_client_sdk/src/build_tools/build_sdk.py
index 6dc346a67f2a84d822ae91259c8f7d3b1360c839..14890bf9909d75f1e6e6dfa3929daa22cd22d389 100755
--- a/native_client_sdk/src/build_tools/build_sdk.py
+++ b/native_client_sdk/src/build_tools/build_sdk.py
@@ -236,6 +236,9 @@ def BuildStepUntarToolchains(pepperdir, platform, arch, toolchains):
buildbot_common.MakeDir(compiler_dir)
buildbot_common.CopyFile(wrapper, compiler_dir)
+ # Module 'os' has no 'symlink' member (on Windows).
+ # pylint: disable=E1101
+
os.symlink('compiler-wrapper.py',
os.path.join(compiler_dir, 'i686-nacl-g++'))
os.symlink('compiler-wrapper.py',
« no previous file with comments | « native_client_sdk/PRESUBMIT.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698