From 748f40d16251a938bb10293943dd9076d800dbaa Mon Sep 17 00:00:00 2001 From: Stefan Krah Date: Tue, 28 Jan 2014 15:04:40 +0100 Subject: Issue #9709: Revert 97fb852c5c26. Many extensions are not using PyMODINIT_FUNC. --- Lib/distutils/command/build_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 9be5923..80689b6 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -538,7 +538,7 @@ class build_ext(Command): library_dirs=ext.library_dirs, runtime_library_dirs=ext.runtime_library_dirs, extra_postargs=extra_args, - export_symbols=ext.export_symbols, + export_symbols=self.get_export_symbols(ext), debug=self.debug, build_temp=self.build_temp, target_lang=language) -- cgit v0.12