diff options
author | Mats Wichmann <mats@linux.com> | 2018-08-19 15:21:13 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2020-05-01 14:31:57 (GMT) |
commit | b890f5fcdfc79795533cae7b7cd1bf05cb82c527 (patch) | |
tree | 0d540e996d5a73d674442612737addf8ae9ea123 /testing | |
parent | db16f4557b7c816cba466f2e009930017e4aac72 (diff) | |
download | SCons-b890f5fcdfc79795533cae7b7cd1bf05cb82c527.zip SCons-b890f5fcdfc79795533cae7b7cd1bf05cb82c527.tar.gz SCons-b890f5fcdfc79795533cae7b7cd1bf05cb82c527.tar.bz2 |
Use uuid lib for Visual Studio guids
In the Visual Studio area, use uuid (Python standard library)
to generate GUID identifiers instead of specifically using md5.
Simplifies things as uuid lib can provide already formatted strings
of the form that we need.
This is split off from PR #3447 by request.
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'testing')
-rw-r--r-- | testing/framework/TestSConsMSVS.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/framework/TestSConsMSVS.py b/testing/framework/TestSConsMSVS.py index 4b05ddd..4de3aaf 100644 --- a/testing/framework/TestSConsMSVS.py +++ b/testing/framework/TestSConsMSVS.py @@ -699,7 +699,7 @@ print("self._msvs_versions =%%s"%%str(SCons.Tool.MSCommon.query_versions())) python = sys.executable if project_guid is None: - project_guid = "{E5466E26-0003-F18B-8F8A-BCD76C86388D}" + project_guid = "{B0CC4EE9-0174-51CD-A06A-41D0713E928A}" if 'SCONS_LIB_DIR' in os.environ: exec_script_main = "from os.path import join; import sys; sys.path = [ r'%s' ] + sys.path; import SCons.Script; SCons.Script.main()" % os.environ['SCONS_LIB_DIR'] |