diff options
| author | Andrew M. Kuchling <amk@amk.ca> | 2001-08-13 13:56:24 +0000 |
|---|---|---|
| committer | Andrew M. Kuchling <amk@amk.ca> | 2001-08-13 13:56:24 +0000 |
| commit | 33c706bf78fbd8f9aad6ec837164a703b8a9a2e2 (patch) | |
| tree | 8c1b5057e3c980ec9aa192ce66b0b52a7785a6d0 /command/config.py | |
| parent | 45de3e623e5f498ee233b53b22a76a48fc542a08 (diff) | |
| download | python-setuptools-git-33c706bf78fbd8f9aad6ec837164a703b8a9a2e2.tar.gz | |
Fix for NameError caught by PyChecker.
(This command seems to be essentially untested; should fix that...)
Diffstat (limited to 'command/config.py')
| -rw-r--r-- | command/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/command/config.py b/command/config.py index ce6cff8c..d4096918 100644 --- a/command/config.py +++ b/command/config.py @@ -272,8 +272,8 @@ class config (Command): from distutils.ccompiler import CompileError, LinkError self._check_compiler() try: - self._link(body, headers, include_dirs, - libraries, library_dirs, lang) + src, obj, exe = self._link(body, headers, include_dirs, + libraries, library_dirs, lang) self.spawn([exe]) ok = 1 except (CompileError, LinkError, DistutilsExecError): |
