X-Git-Url: http://git.onelab.eu/?p=madwifi.git;a=blobdiff_plain;f=Makefile;h=191bd1130edade03c88c66e62b7e4ec732b4f12c;hp=78fccbd30948623dee29d33b063f6d101854f817;hb=577c8b1a6490d5a17f650410073cd4400f8b22e0;hpb=1c03c8e5c5c71e246fd1f451d2b2c1426bb91135 diff --git a/Makefile b/Makefile index 78fccbd..191bd11 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ # $Id$ -CURL := curl -H Pragma: -O -R -S --fail --show-error +#WEBFETCH := curl -H Pragma: -O -R -S --fail --show-error +WEBFETCH := wget SHA1SUM = sha1sum # default - overridden by the build @@ -13,7 +14,7 @@ main.FILE := $(notdir $(main.URL)) SOURCEFILES := $(main.FILE) $(main.FILE): #FORCE - @if [ ! -e "$@" ] ; then echo "$(CURL) $(main.URL)" ; $(CURL) $(main.URL) ; fi + @if [ ! -e "$@" ] ; then echo "$(WEBFETCH) $(main.URL)" ; $(WEBFETCH) $(main.URL) ; fi @if [ ! -e "$@" ] ; then echo "Could not download source file: $@ does not exist" ; exit 1 ; fi @if test "$$(sha1sum $@ | awk '{print $$1}')" != "$(main.SHA1SUM)" ; then \ echo "sha1sum of the downloaded $@ does not match the one from 'sources' file" ; \