diff options
author | David Cournapeau <cournape@gmail.com> | 2009-07-26 11:20:10 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-07-26 11:20:10 +0000 |
commit | f56c11a7ba8e60fd5e4873be6469022eb5384da9 (patch) | |
tree | be3c5b3b4f22c95087df8a155dcf65c9763944a5 /numpy/core/setup.py | |
parent | c0dac3c19df42c60f8905e6b84b36f512d483e08 (diff) | |
download | numpy-f56c11a7ba8e60fd5e4873be6469022eb5384da9.tar.gz |
Remove unused mlib_pkg_content function.
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index 1ae70f885..9c6645118 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -293,23 +293,6 @@ def visibility_define(config): else: return '' -def mlib_pkg_content(mathlibs): - posix_mlib = ' '.join(['-l%s' % l for l in mathlibs]) - msvc_mlib = ' '.join(['%s.lib' % l for l in mathlibs]) - ret = """ -[meta] -Name = mlib -Description = Math library used with this version of numpy -Version = 1.0 - -[default] -Libs=%s - -[msvc] -Libs=%s - """ % (posix_mlib, msvc_mlib) - return ret - def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration,dot_join from numpy.distutils.system_info import get_info, default_lib_dirs |