Whitespace normalization.

This commit is contained in:
Tim Peters 2005-05-18 02:18:09 +00:00
parent 5ff1492720
commit fffc4b7b3a
1 changed files with 1 additions and 1 deletions

View File

@ -147,7 +147,7 @@ def customize_compiler(compiler):
""" """
if compiler.compiler_type == "unix": if compiler.compiler_type == "unix":
(cc, cxx, opt, cflags, ccshared, ldshared, so_ext) = \ (cc, cxx, opt, cflags, ccshared, ldshared, so_ext) = \
get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS', get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS',
'CCSHARED', 'LDSHARED', 'SO') 'CCSHARED', 'LDSHARED', 'SO')
if os.environ.has_key('CC'): if os.environ.has_key('CC'):