Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
5688d675
Commit
5688d675
authored
Feb 23, 2016
by
Jason R. Coombs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace last usage of reg_value
parent
124b0d65
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
setuptools/msvc9_support.py
setuptools/msvc9_support.py
+2
-3
No files found.
setuptools/msvc9_support.py
View file @
5688d675
...
...
@@ -258,15 +258,14 @@ def _query_vcvarsall(version, arch):
"""
pi = PlatformInfo(arch)
reg = RegistryInfo(pi, version)
reg_value = reg.lookup
# Find Microsoft .NET Framework 32bit directory
guess_fw = os.path.join(pi.win_dir, r'
Microsoft
.
NET
\
Framework
')
FrameworkDir32 = reg
_value
(reg.vc, '
frameworkdir32
') or guess_fw
FrameworkDir32 = reg
.lookup
(reg.vc, '
frameworkdir32
') or guess_fw
# Find Microsoft .NET Framework 64bit directory
guess_fw64 = os.path.join(pi.win_dir, r'
Microsoft
.
NET
\
Framework64
')
FrameworkDir64 = reg
_value
(reg.vc, '
frameworkdir64
') or guess_fw64
FrameworkDir64 = reg
.lookup
(reg.vc, '
frameworkdir64
') or guess_fw64
# Set Microsoft Visual Studio Tools
VSTools = [
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment