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

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: 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..2d7f7af91f046ac7f01f254003885939c08f2ce7 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') + "\\",
Nico 2012/05/03 22:28:09 nit: ' not ", for local consistency
scottmg 2012/05/03 22:41:36 Done. 5 non-space characters, and I get 40% of th
'$(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