Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/llvm
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2021-05-07 18:44:22 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2021-05-10 16:37:39 +0300
commitac0aa75f6bde9700d82fe18ed2244c7dadc74f65 (patch)
treeec4ad7b01fcc262ad8a94a328b33ae6c78e359cb /llvm
parentbffb38253c27390d750985d36ac86a0266d4d657 (diff)
sdks: Use https for xamjenkinsartifacts llvm archive download
Accessing the storage account fails now when using plain http.
Diffstat (limited to 'llvm')
-rw-r--r--llvm/build.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/build.mk b/llvm/build.mk
index a66200d07de..e7e9ed6de53 100644
--- a/llvm/build.mk
+++ b/llvm/build.mk
@@ -6,8 +6,8 @@ LLVM_PREFIX ?= $(abspath $(abs_top_srcdir)/llvm/usr)
# LLVM_BRANCH := $(shell git -C "$(abs_top_srcdir)/external/llvm-project/llvm" rev-parse --abbrev-ref HEAD)
LLVM_VERSION := $(shell git -C "$(abs_top_srcdir)/external/llvm-project/llvm" rev-parse HEAD)
-# FIXME: URL should be http://xamjenkinsartifact.blob.core.windows.net/build-package-osx-llvm-$(LLVM_BRANCH)/llvm-osx64-$(LLVM_VERSION).tar.gz
-LLVM_DOWNLOAD_LOCATION = "http://xamjenkinsartifact.blob.core.windows.net/build-package-osx-llvm-release60/llvm-osx64-$(LLVM_VERSION).tar.gz"
+# FIXME: URL should be https://xamjenkinsartifact.blob.core.windows.net/build-package-osx-llvm-$(LLVM_BRANCH)/llvm-osx64-$(LLVM_VERSION).tar.gz
+LLVM_DOWNLOAD_LOCATION = "https://xamjenkinsartifact.blob.core.windows.net/build-package-osx-llvm-release60/llvm-osx64-$(LLVM_VERSION).tar.gz"
CPU_COUNT ?= $(shell getconf _NPROCESSORS_ONLN || echo 8)