diff options
Diffstat (limited to 'numpy/distutils/command/install_clib.py')
-rw-r--r-- | numpy/distutils/command/install_clib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/install_clib.py b/numpy/distutils/command/install_clib.py index ddb10a162..8b8561bb2 100644 --- a/numpy/distutils/command/install_clib.py +++ b/numpy/distutils/command/install_clib.py @@ -1,5 +1,6 @@ import os from distutils.core import Command +from distutils.ccompiler import new_compiler from numpy.distutils.misc_util import get_cmd class install_clib(Command): @@ -16,7 +17,6 @@ class install_clib(Command): def run (self): # We need the compiler to get the library name -> filename association - from distutils.ccompiler import new_compiler compiler = new_compiler(compiler=None) compiler.customize(self.distribution) |