I have not been able to build any of the numpy-1.0 series. Finally I bit
the bullet and fixed it. Here is the patch:
diff -u numpy-1.0rc2/numpy/numarray/setup.py{~,}
--- numpy-1.0rc2/numpy/numarray/setup.py~ 2006-07-26
16:04:32.000000000 -0400
+++ numpy-1.0rc2/numpy/numarray/setup.py 2006-10-12 11:58:23.000000000 -0400
@@ -5,7 +5,8 @@
from numpy.distutils.misc_util import Configuration
config = Configuration('numarray',parent_package,top_path)
- config.add_data_files('numpy/')
+# config.add_data_files('numpy/')
+ config.add_data_dir('numpy/')
# Configure fftpack_lite
config.add_extension('_capi',
|