diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-01-23 09:23:15 +0000 |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2010-01-23 09:23:15 +0000 |
commit | 5633a8048fd8d59c9b23c98fb7e6419689b06316 (patch) | |
tree | e87ecd54a7197d6cd69ef0d82ae7dd7f8941c9a9 /Lib/distutils/command/config.py | |
parent | c3b0cd75b22aa09bd849a74fb92e22ba831dfcd4 (diff) | |
download | cpython-git-5633a8048fd8d59c9b23c98fb7e6419689b06316.tar.gz |
taking sysconfig out of distutils
Diffstat (limited to 'Lib/distutils/command/config.py')
-rw-r--r-- | Lib/distutils/command/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py index b084913563..da8da59538 100644 --- a/Lib/distutils/command/config.py +++ b/Lib/distutils/command/config.py @@ -16,7 +16,7 @@ import re from distutils.core import Command from distutils.errors import DistutilsExecError -from distutils.sysconfig import customize_compiler +from distutils.ccompiler import customize_compiler from distutils import log LANG_EXT = {'c': '.c', 'c++': '.cxx'} |