Merge pull request #206 from wlbksy/patch-1
Fix #204 wget in mingw/msys sometimes download file with trailing name,
This commit is contained in:
commit
e029242870
4
Makefile
4
Makefile
|
@ -267,7 +267,7 @@ else
|
||||||
ifeq ($(OSNAME), FreeBSD)
|
ifeq ($(OSNAME), FreeBSD)
|
||||||
fetch $(LAPACK_URL)
|
fetch $(LAPACK_URL)
|
||||||
else
|
else
|
||||||
wget $(LAPACK_URL)
|
wget -O $@ $(LAPACK_URL)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
@ -320,4 +320,4 @@ clean ::
|
||||||
rm -rf $(NETLIB_LAPACK_DIR) ;\
|
rm -rf $(NETLIB_LAPACK_DIR) ;\
|
||||||
fi
|
fi
|
||||||
@rm -f *.grd Makefile.conf_last config_last.h
|
@rm -f *.grd Makefile.conf_last config_last.h
|
||||||
@echo Done.
|
@echo Done.
|
||||||
|
|
Loading…
Reference in New Issue