From c2b5203c09cac644dae7ec02c6011f337c856636 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Sat, 4 Nov 2006 21:19:03 +0000 Subject: Fix typo. --- numpy/distutils/command/build_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/distutils/command/build_ext.py') 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: -- cgit v1.2.1