summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/CHANGES.txt5
-rw-r--r--src/engine/SCons/Tool/msvc.py2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/CHANGES.txt b/src/CHANGES.txt
index 553c05e..6cc2562 100644
--- a/src/CHANGES.txt
+++ b/src/CHANGES.txt
@@ -31,6 +31,11 @@ RELEASE 0.95 - XXX
- Work around Cygwin Python's silly fiction that it's using a
case-sensitive file system.
+ From Kerim Borchaev:
+
+ - Fix a typo in a msvc.py's registry lookup: "VCComponents.dat", not
+ "VSComponents.dat".
+
From Chris Burghart:
- Fix the ability to save/restore a PackageOption to a file.
diff --git a/src/engine/SCons/Tool/msvc.py b/src/engine/SCons/Tool/msvc.py
index fac178c..ace9cfb 100644
--- a/src/engine/SCons/Tool/msvc.py
+++ b/src/engine/SCons/Tool/msvc.py
@@ -65,7 +65,7 @@ def _parse_msvc7_overrides(version):
except SCons.Util.RegError:
raise SCons.Errors.InternalError, "The Local AppData directory was not found in the registry."
- comps = comps + '\\Microsoft\\VisualStudio\\' + version + '\\VSComponents.dat'
+ comps = comps + '\\Microsoft\\VisualStudio\\' + version + '\\VCComponents.dat'
dirs = {}
if os.path.exists(comps):