summaryrefslogtreecommitdiff
path: root/third-party/pjproject/Makefile
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2017-06-13 09:47:43 -0600
committerGeorge Joseph <gjoseph@digium.com>2017-06-13 10:52:29 -0500
commitb2fd7e50695b64826cbfcd65aa6e5c06532b3e5e (patch)
treeb401268321b7b8b08a031ec1b8e0053670c3d29c /third-party/pjproject/Makefile
parentabe1dd303909416a1b57747bdb162b82fb08f72b (diff)
pjproject_bundled: Use the asterisk github mirror for download
We now mirror the pjproject tarball and md5 at https://github.com/asterisk/third-party/tree/master/pjproject To improve download reliability, we now get the tarball from our mirror instead of from pjsip.org. ASTERISK-27052 #close Reported-by: 'alex' Change-Id: I60236587a8935bfa71fcc391f4e2ecb31918c08a
Diffstat (limited to 'third-party/pjproject/Makefile')
-rw-r--r--third-party/pjproject/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/third-party/pjproject/Makefile b/third-party/pjproject/Makefile
index e691f2242..a5b550842 100644
--- a/third-party/pjproject/Makefile
+++ b/third-party/pjproject/Makefile
@@ -97,7 +97,7 @@ endef
define download_from_pjproject
($(SHELL_ECHO_PREFIX) Downloading $(TARBALL_URL) to $(TARBALL) ;\
$(DOWNLOAD_TO_STDOUT) $(call DOWNLOAD_TIMEOUT,5,60) $(TARBALL_URL) > $(TARBALL) &&\
- $(SHELL_ECHO_PREFIX) Downloading $(PJPROJECT_URL)/MD5SUM to $(PJMD5SUM) &&\
+ $(SHELL_ECHO_PREFIX) Downloading $(PJPROJECT_URL)/MD5SUM.TXT to $(PJMD5SUM) &&\
$(DOWNLOAD_TO_STDOUT) $(call DOWNLOAD_TIMEOUT,5,60) $(PJPROJECT_URL)/MD5SUM.TXT > $(PJMD5SUM) &&\
$(verify_tarball))
endef