From 1466a5fc4e5c21eaadbbfc9cda8d9fb0f368f02b Mon Sep 17 00:00:00 2001 From: mitchell <70453897+667e-11@users.noreply.github.com> Date: Thu, 19 Dec 2013 16:47:10 -0500 Subject: Ensure wget uses the correct names when saving dependencies; src/Makefile Some websites serve packages using strange URLs or have odd names that can confuse different versions of wget. --- src/Makefile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/Makefile b/src/Makefile index 5e25c03e..2146947b 100644 --- a/src/Makefile +++ b/src/Makefile @@ -438,7 +438,7 @@ pdcurses_zip = download gtkosx_zip = gtkosx-2.24.16.zip bombay_zip = bombay.zip -$(scintilla_tgz): ; wget "http://prdownloads.sourceforge.net/scintilla/$@" +$(scintilla_tgz): ; wget "http://prdownloads.sourceforge.net/scintilla/$@" -O $@ scintilla: scintilla.patch | $(scintilla_tgz) mkdir $@ && tar xzf $| -C $@ && mv $@/*/* $@ patch -d $@ -N -p1 < $< @@ -452,8 +452,9 @@ $(scintillua_zip): LexLPeg.cxx: | ../lexers ; ln -s $|/$@ $@ $(lua_tgz): ; wget "http://www.lua.org/ftp/$@" $(lpeg_tgz): ; wget "http://www.inf.puc-rio.br/~roberto/lpeg/$@" -$(lfs_zip): ; wget "https://github.com/keplerproject/luafilesystem/archive/$@" -$(lwinapi_zip): ; wget "https://github.com/stevedonovan/winapi/archive/$@" +$(lfs_zip): + wget "https://github.com/keplerproject/luafilesystem/archive/$@" -O $@ +$(lwinapi_zip): ; wget "https://github.com/stevedonovan/winapi/archive/$@" -O $@ lua: lua.patch | $(lua_tgz) mkdir $@ && tar xzf $| -C $@ && mv $@/*/* $@ patch -d $@ -N -p1 < $< -- cgit v1.2.3