commit | dbec780a0b35c3cc78b224bcb69295d863c57503 | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Sun Oct 10 09:37:12 2010 +0000 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Sun Oct 10 09:37:12 2010 +0000 |
tree | 4cca36cc8e44db32c69f3a95cea79a8ab5dc0f29 | |
parent | 19f8edc39d344b12f8b60c3c23bdfb8e523593b7 [diff] [blame] |
Issue #9437: Fix building C extensions with non-default LDFLAGS.
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 730718a..19847c9 100644 --- a/Lib/sysconfig.py +++ b/Lib/sysconfig.py
@@ -296,6 +296,11 @@ # bogus variable reference; just drop it since we can't deal variables.remove(name) + # strip spurious spaces + for k, v in done.items(): + if isinstance(v, str): + done[k] = v.strip() + # save the results in the global dictionary vars.update(done) return vars