Prevent redundant work building Numpy

This commit is contained in:
Michael Droettboom 2018-04-12 13:12:43 -04:00
parent 2690ece84f
commit 8aca5e2ab3
1 changed files with 2 additions and 1 deletions

View File

@ -77,7 +77,8 @@ $(HOSTDIR)/setup.py: $(ZIPFILE)
$(HOSTBUILD)/lib.$(PLATFORMSLUG)/numpy/__init__.py: $(ROOT)/.patched
( \
cd $(HOSTDIR); \
$(HOSTPYTHON) setup.py install \
$(HOSTPYTHON) setup.py install; \
touch $(HOSTBUILD)/lib.$(PLATFORMSLUG)/numpy/__init__.py \
)