diff options
author | cookedm <cookedm@localhost> | 2006-06-12 22:29:42 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-06-12 22:29:42 +0000 |
commit | 353954f03e20cfdcef94e5de8d50f59a2125a549 (patch) | |
tree | e3d6c395ccce838fe6a071b2a7494e5e67862a9c /numpy | |
parent | cc961e3f6758e563be1bf3bf25ed5e6367036e65 (diff) | |
download | numpy-353954f03e20cfdcef94e5de8d50f59a2125a549.tar.gz |
Fix 'UnboundLocalError' in numpy.distutils.command.config
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/command/config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/distutils/command/config.py b/numpy/distutils/command/config.py index 80b2447e8..003f04aad 100644 --- a/numpy/distutils/command/config.py +++ b/numpy/distutils/command/config.py @@ -99,6 +99,7 @@ class config(old_config): """ from distutils.ccompiler import CompileError, LinkError self._check_compiler() + exitcode, output = 255, '' try: src, obj, exe = self._link(body, headers, include_dirs, libraries, library_dirs, lang) |