Skip to content

Commit e24a612

Browse files
committed
Use curl instead of wget in release/osx/Makefile; curl comes preinstalled on OS X
svn path=/trunk/matplotlib/; revision=7510
1 parent 0e59d67 commit e24a612

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

release/osx/Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ clean:
2929
matplotlib-${MPLVERSION} *~
3030

3131
fetch:
32-
wget http://www.zlib.net/zlib-${ZLIBVERSION}.tar.gz &&\
33-
wget http://internap.dl.sourceforge.net/sourceforge/libpng/libpng-${PNGVERSION}.tar.bz2 &&\
34-
wget http://download.savannah.gnu.org/releases/freetype/freetype-${FREETYPEVERSION}.tar.bz2&&\
35-
wget http://pypi.python.org/packages/source/b/bdist_mpkg/bdist_mpkg-${BDISTMPKGVERSION}.tar.gz&&\
32+
curl -LO http://www.zlib.net/zlib-${ZLIBVERSION}.tar.gz &&\
33+
curl -LO http://internap.dl.sourceforge.net/sourceforge/libpng/libpng-${PNGVERSION}.tar.bz2 &&\
34+
curl -LO http://download.savannah.gnu.org/releases/freetype/freetype-${FREETYPEVERSION}.tar.bz2&&\
35+
curl -LO http://pypi.python.org/packages/source/b/bdist_mpkg/bdist_mpkg-${BDISTMPKGVERSION}.tar.gz&&\
3636
tar xvfz bdist_mpkg-${BDISTMPKGVERSION}.tar.gz &&\
37-
echo "You need to to install bdist_mpkg-${BDISTMPKGVERSION} now"
37+
echo "You need to install bdist_mpkg-${BDISTMPKGVERSION} now"
3838

3939

4040

0 commit comments

Comments
 (0)