diff options
author | PJ Eby <distutils-sig@python.org> | 2006-01-14 00:13:18 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-01-14 00:13:18 +0000 |
commit | 7fe043f8b5b41ad33cdd415e65f97d3bf09e5419 (patch) | |
tree | 773fe72ac4bf0f29add175dcc25f8b14ee74f03d /setuptools/command/build_ext.py | |
parent | 06af888de2fd3cc8cffcb43e6c79967f0db233b0 (diff) | |
download | external_python_setuptools-7fe043f8b5b41ad33cdd415e65f97d3bf09e5419.tar.gz external_python_setuptools-7fe043f8b5b41ad33cdd415e65f97d3bf09e5419.tar.bz2 external_python_setuptools-7fe043f8b5b41ad33cdd415e65f97d3bf09e5419.zip |
Fix broken import
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042039
Diffstat (limited to 'setuptools/command/build_ext.py')
-rw-r--r-- | setuptools/command/build_ext.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/command/build_ext.py b/setuptools/command/build_ext.py index 2c5104bc..ad4861a6 100644 --- a/setuptools/command/build_ext.py +++ b/setuptools/command/build_ext.py @@ -11,6 +11,7 @@ from setuptools.extension import Library from distutils.ccompiler import new_compiler from distutils.sysconfig import customize_compiler from distutils import log +from distutils.errors import * have_rtld = False libtype = 'shared' |