summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/msvccompiler.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/distutils/msvccompiler.py')
-rw-r--r--Lib/distutils/msvccompiler.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py
index bc27cea..2989910 100644
--- a/Lib/distutils/msvccompiler.py
+++ b/Lib/distutils/msvccompiler.py
@@ -166,9 +166,9 @@ class MSVCCompiler (CCompiler) :
if versions:
version = versions[0] # highest version
- self.cc = _find_exe("cl.exe", version)
- self.link = _find_exe("link.exe", version)
- self.lib = _find_exe("lib.exe", version)
+ self.cc = find_exe("cl.exe", version)
+ self.link = find_exe("link.exe", version)
+ self.lib = find_exe("lib.exe", version)
set_path_env_var ('lib', version)
set_path_env_var ('include', version)
path=get_msvc_paths('path', version)