summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/build_src.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-03-12 16:34:36 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-03-12 16:34:36 +0000
commitebd770a34e4d2e9326eca18e5a45c14ab75c56f0 (patch)
tree18fbaa8db9272a61e0641f0cea67041d072609e0 /numpy/distutils/command/build_src.py
parent016763c26f6f55d6a37ed508ab773b53e709a49f (diff)
downloadnumpy-ebd770a34e4d2e9326eca18e5a45c14ab75c56f0.tar.gz
Back out VS 2003 hack - it is too fragile.
Diffstat (limited to 'numpy/distutils/command/build_src.py')
-rw-r--r--numpy/distutils/command/build_src.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/numpy/distutils/command/build_src.py b/numpy/distutils/command/build_src.py
index 6d18f64e6..4ba3f0a9a 100644
--- a/numpy/distutils/command/build_src.py
+++ b/numpy/distutils/command/build_src.py
@@ -275,13 +275,6 @@ class build_src(build_ext.build_ext):
#for f in h_files:
# self.distribution.headers.append((package,f))
- hack_name = os.path.join(os.path.dirname(__file__),
- os.pardir, "mingw", "gfortran_vs2003_hack.c")
- target_c = os.path.join(self.build_src,
- "gfortran_vs2003_hack.c")
- import shutil
- shutil.copy(hack_name, target_c)
- #sources.append(target_c)
ext.sources = sources
def generate_sources(self, sources, extension):