summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/msvccompiler.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-03-29 04:13:00 (GMT)
committerGreg Ward <gward@python.net>2000-03-29 04:13:00 (GMT)
commit41b4dd66c8a6c82ca6cad65c0557aadd269f6075 (patch)
tree8a25e872792fb42d382d5dec858a5843deb47ca1 /Lib/distutils/msvccompiler.py
parented8a0e0f21360abbe907a3b80e47c854a443eb13 (diff)
downloadcpython-41b4dd66c8a6c82ca6cad65c0557aadd269f6075.zip
cpython-41b4dd66c8a6c82ca6cad65c0557aadd269f6075.tar.gz
cpython-41b4dd66c8a6c82ca6cad65c0557aadd269f6075.tar.bz2
Call 'find_exe()', not '_find_exe()'.
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)