diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2006-11-04 21:19:03 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2006-11-04 21:19:03 +0000 |
commit | c2b5203c09cac644dae7ec02c6011f337c856636 (patch) | |
tree | 228400f8e551298ddf001d6b368d44f7207b0ab9 /numpy/distutils/command/build_ext.py | |
parent | c0c1bea69b11881bebf483ce0c961812a27f061c (diff) | |
download | numpy-c2b5203c09cac644dae7ec02c6011f337c856636.tar.gz |
Fix typo.
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
-rw-r--r-- | numpy/distutils/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py index 5f09ea1e3..5a5553820 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -357,7 +357,7 @@ class build_ext (old_build_ext): # make g77-compiled static libs available to MSVC lib_added = False for lib in self.fcompiler.libraries: - if not lib.startswtih('msvcr'): + if not lib.startswith('msvcr'): c_libraries.append(lib) p = combine_paths(f_lib_dirs, 'lib' + lib + '.a') if p: |