- 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.
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):