]> granicus.if.org Git - python/commitdiff
Oops. Fix distutils tests that r82746 broke.
authorJeffrey Yasskin <jyasskin@gmail.com>
Fri, 9 Jul 2010 19:55:05 +0000 (19:55 +0000)
committerJeffrey Yasskin <jyasskin@gmail.com>
Fri, 9 Jul 2010 19:55:05 +0000 (19:55 +0000)
Lib/sysconfig.py

index d59a6829019d1ad93f125c94b617c74a6f90ab0b..50c81332aacd06e75f731f015e09cb9bedf42531 100644 (file)
@@ -262,7 +262,9 @@ def _parse_makefile(filename, vars=None):
     # Add in CFLAGS, LDFLAGS, and CPPFLAGS, which are named with a
     # prefix in the Makefile.
     for var in ('CFLAGS', 'LDFLAGS', 'CPPFLAGS'):
-        done[var] = done['PY_' + var]
+        makefile_value = done.get('PY_' + var)
+        if makefile_value is not None:
+            done[var] = makefile_value
 
     # save the results in the global dictionary
     vars.update(done)