From 4ba5da418cb031de58b8727a7c91cbfa4cf16936 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Mon, 6 Mar 2000 03:36:50 +0000 Subject: Don't pass 'keep_dir' to 'compile()' method of CCompiler -- no longer used. Don't assume that the 'libraries' and 'library_dirs' elements of the build info dict are always lists. --- Lib/distutils/command/build_ext.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index bbdf062..050a5c6 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -245,7 +245,6 @@ class build_ext (Command): include_dirs = build_info.get ('include_dirs') objects = self.compiler.compile (sources, output_dir=self.build_temp, - keep_dir=1, macros=macros, include_dirs=include_dirs, debug=self.debug) @@ -256,8 +255,10 @@ class build_ext (Command): extra_objects = build_info.get ('extra_objects') if extra_objects: objects.extend (extra_objects) - libraries = self.libraries + build_info.get ('libraries') - library_dirs = self.library_dirs + build_info.get ('library_dirs') + libraries = (self.libraries + + (build_info.get ('libraries') or [])) + library_dirs = (self.library_dirs + + (build_info.get ('library_dirs') or [])) extra_args = build_info.get ('extra_link_args') or [] if self.compiler.compiler_type == 'msvc': -- cgit v0.12