summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/build_ext.py
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2009-04-16 17:32:23 +0000
committerStefan van der Walt <stefan@sun.ac.za>2009-04-16 17:32:23 +0000
commit37abe7a2f64dbd5dffee0d5abd5784b15191d9a5 (patch)
tree665e1faacc77c8138b3f74648d2e27ba74ec4a28 /numpy/distutils/command/build_ext.py
parent9c5ec967cf50b3c498980650bf6a132b1516171a (diff)
downloadnumpy-37abe7a2f64dbd5dffee0d5abd5784b15191d9a5.tar.gz
Remove tabs and unnecessary whitespace.
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
-rw-r--r--numpy/distutils/command/build_ext.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py
index c47357808..2b114d4a7 100644
--- a/numpy/distutils/command/build_ext.py
+++ b/numpy/distutils/command/build_ext.py
@@ -409,10 +409,10 @@ class build_ext (old_build_ext):
build_temp=self.build_temp,**kws)
def _add_dummy_mingwex_sym(self, c_sources):
- build_src = self.get_finalized_command("build_src").build_src
- build_clib = self.get_finalized_command("build_clib").build_clib
- objects = self.compiler.compile([os.path.join(build_src,
- "gfortran_vs2003_hack.c")],
+ build_src = self.get_finalized_command("build_src").build_src
+ build_clib = self.get_finalized_command("build_clib").build_clib
+ objects = self.compiler.compile([os.path.join(build_src,
+ "gfortran_vs2003_hack.c")],
output_dir=self.build_temp)
self.compiler.create_static_lib(objects, "_gfortran_workaround", output_dir=build_clib, debug=self.debug)