In 'check_extensions_list()': when converting old-style 'buildinfo' dict,

don't assign None to any attributes of the Extension object.
This commit is contained in:
Greg Ward 2000-08-26 02:21:55 +00:00
parent f5e96fa6b7
commit d8014e6608
1 changed files with 3 additions and 1 deletions

View File

@ -278,7 +278,9 @@ class build_ext (Command):
'extra_objects',
'extra_compile_args',
'extra_link_args'):
setattr(ext, key, build_info.get(key))
val = build_info.get(key)
if val is not None:
setattr(ext, key, val)
# Medium-easy stuff: same syntax/semantics, different names.
ext.runtime_library_dirs = build_info.get('rpath')