diff options
| author | Just van Rossum <just@letterror.com> | 2003-02-03 11:43:54 +0000 |
|---|---|---|
| committer | Just van Rossum <just@letterror.com> | 2003-02-03 11:43:54 +0000 |
| commit | 90ceb5eaaf84551cf39ba48550debf99f9081e7b (patch) | |
| tree | e560f67dded286bf6a5bab15dcab3adcb61d7879 /command/config.py | |
| parent | c7d6889f2f4e4f3a0562798e3641d67c09951f35 (diff) | |
| download | python-setuptools-git-90ceb5eaaf84551cf39ba48550debf99f9081e7b.tar.gz | |
patch #664131, fix config command on OSX and Linux
Diffstat (limited to 'command/config.py')
| -rw-r--r-- | command/config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/command/config.py b/command/config.py index b6f5ad1d..3bd537a6 100644 --- a/command/config.py +++ b/command/config.py @@ -151,7 +151,8 @@ class config (Command): library_dirs=library_dirs, target_lang=lang) - prog = prog + self.compiler.exe_extension + if self.compiler.exe_extension is not None: + prog = prog + self.compiler.exe_extension self.temp_files.append(prog) return (src, obj, prog) |
