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

Unified Diff: pylib/gyp/msvs_emulation.py

Issue 10371002: ninja windows: make sure there's a trailing slash on $(VCInstallDir) (Closed) Base URL: https://gyp.googlecode.com/svn/trunk
Patch Set: fix quotes Created 8 years, 8 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 | test/win/gyptest-macro-vcinstalldir.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pylib/gyp/msvs_emulation.py
diff --git a/pylib/gyp/msvs_emulation.py b/pylib/gyp/msvs_emulation.py
index 9b65e21dd837e6a7b820af428e391ac3e8097310..3648ac3d8dbc5ac13d11f420782c4110311ed554 100644
--- a/pylib/gyp/msvs_emulation.py
+++ b/pylib/gyp/msvs_emulation.py
@@ -154,7 +154,7 @@ class MsvsSettings(object):
equivalents."""
replacements = {
'$(VSInstallDir)': self.vs_version.Path(),
- '$(VCInstallDir)': os.path.join(self.vs_version.Path(), 'VC'),
+ '$(VCInstallDir)': os.path.join(self.vs_version.Path(), 'VC') + '\\',
'$(OutDir)\\': base_to_build + '\\' if base_to_build else '',
'$(IntDir)': '$!INTERMEDIATE_DIR',
'$(InputPath)': '${source}',
« no previous file with comments | « no previous file | test/win/gyptest-macro-vcinstalldir.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698