diff options
| author | Greg Ward <gward@python.net> | 2000-03-29 04:13:00 +0000 | 
|---|---|---|
| committer | Greg Ward <gward@python.net> | 2000-03-29 04:13:00 +0000 | 
| commit | 41b4dd66c8a6c82ca6cad65c0557aadd269f6075 (patch) | |
| tree | 8a25e872792fb42d382d5dec858a5843deb47ca1 /Lib/distutils/msvccompiler.py | |
| parent | ed8a0e0f21360abbe907a3b80e47c854a443eb13 (diff) | |
| download | cpython-git-41b4dd66c8a6c82ca6cad65c0557aadd269f6075.tar.gz | |
Call 'find_exe()', not '_find_exe()'.
Diffstat (limited to 'Lib/distutils/msvccompiler.py')
| -rw-r--r-- | Lib/distutils/msvccompiler.py | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index bc27cea9b7..298991049f 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)  | 
