diff options
author | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-09-16 03:25:30 (GMT) |
---|---|---|
committer | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-09-24 16:04:56 (GMT) |
commit | b8599ed14b051b88203ba6db32dd327946e7d809 (patch) | |
tree | 3f6d7c4d71376c6eb917bbdf29a97658728371db /Makefile | |
parent | 9971cb923a799a68635661ff1308fb8098c88ba1 (diff) | |
download | mxe-b8599ed14b051b88203ba6db32dd327946e7d809.zip mxe-b8599ed14b051b88203ba6db32dd327946e7d809.tar.gz mxe-b8599ed14b051b88203ba6db32dd327946e7d809.tar.bz2 |
secure/update URLs
* change libssh2/apache/xiph URLs to canonical ones
* resubmit patch to remove unnecessary
--no-check-certificate option. The URLs
are non-HTTPS anyway
* blas: restore URL and point to versioned archive
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -267,9 +267,9 @@ ESCAPE_PKG = \ BACKUP_DOWNLOAD = \ (echo "MXE Warning! Downloading $(1) from backup." >&2 && \ - ($(WGET) --no-check-certificate -O '$(PKG_DIR)/.tmp-$($(1)_FILE)' $(PKG_MIRROR)/`$(call ESCAPE_PKG,$(1))` || \ - $(WGET) --no-check-certificate -O '$(PKG_DIR)/.tmp-$($(1)_FILE)' $(PKG_CDN)/`$(call ESCAPE_PKG,$(1))` || \ - $(WGET) --no-check-certificate -O '$(PKG_DIR)/.tmp-$($(1)_FILE)' $(GITLAB_BACKUP)/`$(call ESCAPE_PKG,$(1))`_$($(1)_CHECKSUM))) + ($(WGET) -O '$(PKG_DIR)/.tmp-$($(1)_FILE)' $(PKG_MIRROR)/`$(call ESCAPE_PKG,$(1))` || \ + $(WGET) -O '$(PKG_DIR)/.tmp-$($(1)_FILE)' $(PKG_CDN)/`$(call ESCAPE_PKG,$(1))` || \ + $(WGET) -O '$(PKG_DIR)/.tmp-$($(1)_FILE)' $(GITLAB_BACKUP)/`$(call ESCAPE_PKG,$(1))`_$($(1)_CHECKSUM))) DOWNLOAD_PKG_ARCHIVE = \ $(if $($(1)_SOURCE_TREE),\ |