##// END OF EJS Templates
Makefile.python: try curl if wget fails...
Augie Fackler -
r23824:e278fc8b default
parent child Browse files
Show More
@@ -44,7 +44,7 b' PYTHON_SRCDIR=Python-$(PYTHONVER)'
44 44 PYTHON_SRCFILE=$(PYTHON_SRCDIR).tgz
45 45
46 46 $(PREFIX)/bin/python:
47 [ -f $(PYTHON_SRCFILE) ] || wget http://www.python.org/ftp/python/$(PYTHONVER)/$(PYTHON_SRCFILE) || [ -f $(PYTHON_SRCFILE) ]
47 [ -f $(PYTHON_SRCFILE) ] || wget http://www.python.org/ftp/python/$(PYTHONVER)/$(PYTHON_SRCFILE) || curl -OL http://www.python.org/ftp/python/$(PYTHONVER)/$(PYTHON_SRCFILE) || [ -f $(PYTHON_SRCFILE) ]
48 48 rm -rf $(PYTHON_SRCDIR)
49 49 tar xf $(PYTHON_SRCFILE)
50 50 # Ubuntu disables SSLv2 the hard way, disable it on old Pythons too
General Comments 0
You need to be logged in to leave comments. Login now