diff options
author | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2022-06-16 17:04:52 (GMT) |
---|---|---|
committer | Joseph Brill <48932340+jcbrill@users.noreply.github.com> | 2022-06-16 17:04:52 (GMT) |
commit | 716f93a5207d8e7c941f3ff38ef2b3b0c923c479 (patch) | |
tree | e3b019737a253def7bd77289b301fdbd719f31ef /SCons/Tool | |
parent | 33bef70b9ccaac0106d5e7f0c37211d224b6a585 (diff) | |
download | SCons-716f93a5207d8e7c941f3ff38ef2b3b0c923c479.zip SCons-716f93a5207d8e7c941f3ff38ef2b3b0c923c479.tar.gz SCons-716f93a5207d8e7c941f3ff38ef2b3b0c923c479.tar.bz2 |
Update comments
Diffstat (limited to 'SCons/Tool')
-rw-r--r-- | SCons/Tool/MSCommon/vc.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/SCons/Tool/MSCommon/vc.py b/SCons/Tool/MSCommon/vc.py index acffc7c..e29fba4 100644 --- a/SCons/Tool/MSCommon/vc.py +++ b/SCons/Tool/MSCommon/vc.py @@ -2269,7 +2269,7 @@ class _ScriptArguments: # VS2017+ rewrites uwp => store for 14.0 toolset uwp_arg = msvc.vs_def.vc_uwp - # uwp may not be installed + # store/uwp may not be fully installed argpair = (cls.SortOrder.UWP, uwp_arg) arglist.append(argpair) @@ -2347,7 +2347,6 @@ class _ScriptArguments: ) raise MSVCArgumentError(err_msg) - # sdk folder may not exist argpair = (cls.SortOrder.SDK, sdk_version) arglist.append(argpair) |