From 4254e8c5484460b9be7e58dc89bd25815612fc37 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 28 Sep 2016 23:13:58 -0700 Subject: build_ext: correctly parse the link_objects user option (closes #1703178) Patch by Valerie Lambert. --- Lib/distutils/command/build_ext.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/distutils/command/build_ext.py') diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index f03a4e31d8..7c278ef0af 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -166,6 +166,7 @@ class build_ext(Command): self.include_dirs.append(plat_py_include) self.ensure_string_list('libraries') + self.ensure_string_list('link_objects') # Life is easier if we're not forever checking for None, so # simplify these options to empty lists if unset -- cgit v1.2.1