From: stevenknight Date: Fri, 16 Jan 2004 04:22:51 +0000 (+0000) Subject: Fix an incorrect registry lookup in msvc.py. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=15567b2f20b19d54d27b169642d650939dd6b62d;p=scons.git Fix an incorrect registry lookup in msvc.py. git-svn-id: http://scons.tigris.org/svn/scons/trunk@879 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/src/CHANGES.txt b/src/CHANGES.txt index 553c05e0..6cc25629 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 fac178c1..ace9cfb5 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):