summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorTony Theodore <tonyt@logyst.com>2013-09-07 14:07:59 (GMT)
committerTony Theodore <tonyt@logyst.com>2013-09-07 14:07:59 (GMT)
commit283449db457f83d2abfdc788b5ef010bb40ef484 (patch)
tree71207e4f3363de9748c1b41f09a136ff1a2582f2 /Makefile
parentae6f95e3e7a0039e82c236d9db176887076eb194 (diff)
downloadmxe-283449db457f83d2abfdc788b5ef010bb40ef484.zip
mxe-283449db457f83d2abfdc788b5ef010bb40ef484.tar.gz
mxe-283449db457f83d2abfdc788b5ef010bb40ef484.tar.bz2
Makefile: don't exit on failed download (failed checksum will exit)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 085d9e8..8a9d9e3 100644
--- a/Makefile
+++ b/Makefile
@@ -83,7 +83,10 @@ DOWNLOAD_PKG_ARCHIVE = \
| gzip -d | gzip -9n, \
) \
> '$(PKG_DIR)/$($(1)_FILE)' || \
- ( echo 'Download failed!'; rm -f '$(PKG_DIR)/$($(1)_FILE)'; exit 1; )
+ ( echo; \
+ echo 'Download failed!'; \
+ echo; \
+ rm -f '$(PKG_DIR)/$($(1)_FILE)'; )
ifeq ($(IGNORE_SETTINGS),yes)
$(info [ignore settings.mk])