]> Git Repo - VerusCoin.git/commitdiff
Rename FALLBACK_DOWNLOAD_PATH to PRIORITY_DOWNLOAD_PATH
authorJack Grigg <[email protected]>
Thu, 15 Jun 2017 04:32:36 +0000 (16:32 +1200)
committerJack Grigg <[email protected]>
Thu, 15 Jun 2017 04:32:36 +0000 (16:32 +1200)
Closes #1621.

depends/Makefile
depends/README.md
depends/funcs.mk

index 90cb83394be7a25893e01da6a37e6c0bc11d19dd..a7c3477c5570737f14376991922cd67d2260636c 100644 (file)
@@ -5,7 +5,7 @@ BASE_CACHE ?= $(BASEDIR)/built
 SDK_PATH ?= $(BASEDIR)/SDKs
 NO_WALLET ?=
 NO_UPNP ?=
-FALLBACK_DOWNLOAD_PATH ?= https://z.cash/depends-sources
+PRIORITY_DOWNLOAD_PATH ?= https://z.cash/depends-sources
 
 BUILD ?= $(shell ./config.guess)
 HOST ?= $(BUILD)
index 663d495840d85bbce1038788230eda33c5f3d4eb..09296cc4742e84e4243408677be6db24f1109040 100644 (file)
@@ -33,7 +33,7 @@ The following can be set when running make: make FOO=bar
     SOURCES_PATH: downloaded sources will be placed here
     BASE_CACHE: built packages will be placed here
     SDK_PATH: Path where sdk's can be found (used by OSX)
-    FALLBACK_DOWNLOAD_PATH: If a source file can't be fetched, try here before giving up
+    PRIORITY_DOWNLOAD_PATH: Try fetching source files from here before using their own URLs
     NO_WALLET: Don't download/build/cache libs needed to enable the wallet
     NO_UPNP: Don't download/build/cache packages needed for enabling upnp
     DEBUG: disable some optimizations and enable more runtime checking
index db13ac8eb9138cf2caf5e9d6c4027da2807d7218..91794b477db56a5a3bbf9439d65fc7c7fe749a68 100644 (file)
@@ -22,7 +22,7 @@ endef
 define fetch_file
 (test -f $$($(1)_source_dir)/$(4) || \
   ( mkdir -p $$($(1)_download_dir) && echo Fetching $(1)... && \
-  ( $(build_DOWNLOAD) "$$($(1)_download_dir)/$(4).temp" "$(FALLBACK_DOWNLOAD_PATH)/$(4)" || \
+  ( $(build_DOWNLOAD) "$$($(1)_download_dir)/$(4).temp" "$(PRIORITY_DOWNLOAD_PATH)/$(4)" || \
     $(build_DOWNLOAD) "$$($(1)_download_dir)/$(4).temp" "$(2)/$(3)" ) && \
     echo "$(5)  $$($(1)_download_dir)/$(4).temp" > $$($(1)_download_dir)/.$(4).hash && \
     $(build_SHA256SUM) -c $$($(1)_download_dir)/.$(4).hash && \
This page took 0.030231 seconds and 4 git commands to generate.