diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-29 06:17:12 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-29 06:17:12 (GMT) |
commit | 6224b678651bae90db24c5ad547e6c8930e55bdd (patch) | |
tree | 44dbcb3666c64275716e623f76fa098e60fd1673 /Lib/distutils/command/build_ext.py | |
parent | 930825bddc18cd2b361f70b953e28b32bc9a71c6 (diff) | |
parent | 095e32bfc511ee823af3752507c7211a305c8c00 (diff) | |
download | cpython-6224b678651bae90db24c5ad547e6c8930e55bdd.zip cpython-6224b678651bae90db24c5ad547e6c8930e55bdd.tar.gz cpython-6224b678651bae90db24c5ad547e6c8930e55bdd.tar.bz2 |
merge 3.6 (#1703178)
Diffstat (limited to 'Lib/distutils/command/build_ext.py')
-rw-r--r-- | Lib/distutils/command/build_ext.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 5e51ae4..74de782 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 |