SHA256
1
0
forked from pool/python-numpy
OBS User unknown
2009-02-12 03:52:59 +00:00
committed by Git OBS Bridge
commit a0a8503e2f
8 changed files with 211 additions and 0 deletions

11
numpy-buildfix.patch Normal file
View File

@@ -0,0 +1,11 @@
--- numpy/distutils/command/install.py
+++ numpy/distutils/command/install.py
@@ -58,7 +58,7 @@
need_rewrite = False
for l in f.readlines():
l = l.rstrip()
- if ' ' in l:
+ if ' ' in l and '%dir ' not in l:
need_rewrite = True
l = '"%s"' % (l)
lines.append(l)