Mercurial > hg > mxe
changeset 2728:4647b1a6c342
fix bracketing of wget calls
author | Tony Theodore <tonyt@logyst.com> |
---|---|
date | Sun, 16 Sep 2012 18:26:07 +1000 |
parents | e474975121d6 |
children | 6c492e126140 |
files | Makefile |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile +++ b/Makefile @@ -66,8 +66,8 @@ mkdir -p '$(PKG_DIR)' && \ $(if $($(1)_URL_2), \ ( $(WGET) -T 30 -t 3 -O- '$($(1)_URL)' || $(WGET) -O- '$($(1)_URL_2)' || \ - $(WGET) -O- '$(PKG_MIRROR)/$($(1)_FILE)'), \ - $(WGET) -O- '$($(1)_URL)' || $(WGET) -O- '$(PKG_MIRROR)/$($(1)_FILE)') \ + $(WGET) -O- '$(PKG_MIRROR)/$($(1)_FILE)' ), \ + ( $(WGET) -O- '$($(1)_URL)' || $(WGET) -O- '$(PKG_MIRROR)/$($(1)_FILE)' )) \ $(if $($(1)_FIX_GZIP), \ | gzip -d | gzip -9n, \ ) \