|
From: <jo...@us...> - 2009-08-20 16:19:29
|
Revision: 7510
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7510&view=rev
Author: jouni
Date: 2009-08-20 16:19:22 +0000 (Thu, 20 Aug 2009)
Log Message:
-----------
Use curl instead of wget in release/osx/Makefile; curl comes preinstalled on OS X
Modified Paths:
--------------
trunk/matplotlib/release/osx/Makefile
Modified: trunk/matplotlib/release/osx/Makefile
===================================================================
--- trunk/matplotlib/release/osx/Makefile 2009-08-20 11:44:59 UTC (rev 7509)
+++ trunk/matplotlib/release/osx/Makefile 2009-08-20 16:19:22 UTC (rev 7510)
@@ -29,12 +29,12 @@
matplotlib-${MPLVERSION} *~
fetch:
- wget http://www.zlib.net/zlib-${ZLIBVERSION}.tar.gz &&\
- wget http://internap.dl.sourceforge.net/sourceforge/libpng/libpng-${PNGVERSION}.tar.bz2 &&\
- wget http://download.savannah.gnu.org/releases/freetype/freetype-${FREETYPEVERSION}.tar.bz2&&\
- wget http://pypi.python.org/packages/source/b/bdist_mpkg/bdist_mpkg-${BDISTMPKGVERSION}.tar.gz&&\
+ curl -LO http://www.zlib.net/zlib-${ZLIBVERSION}.tar.gz &&\
+ curl -LO http://internap.dl.sourceforge.net/sourceforge/libpng/libpng-${PNGVERSION}.tar.bz2 &&\
+ curl -LO http://download.savannah.gnu.org/releases/freetype/freetype-${FREETYPEVERSION}.tar.bz2&&\
+ curl -LO http://pypi.python.org/packages/source/b/bdist_mpkg/bdist_mpkg-${BDISTMPKGVERSION}.tar.gz&&\
tar xvfz bdist_mpkg-${BDISTMPKGVERSION}.tar.gz &&\
- echo "You need to to install bdist_mpkg-${BDISTMPKGVERSION} now"
+ echo "You need to install bdist_mpkg-${BDISTMPKGVERSION} now"
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|