From 6c50831eee9fc38ed222854e94ef96d34a8034d0 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Thu, 28 May 2020 21:40:12 +0200 Subject: [PATCH] - environment-build: add --no-check-certificate option to wget --- make/environment-build.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/environment-build.mk b/make/environment-build.mk index bb1c8353..247e8b6a 100644 --- a/make/environment-build.mk +++ b/make/environment-build.mk @@ -214,7 +214,7 @@ REWRITE_PKGCONF = $(REWRITE_CONFIG_RULES) $(PKG_CONFIG_PATH) # ----------------------------------------------------------------------------- # download archives into archives directory -DOWNLOAD = wget -t3 -T60 -c -P $(ARCHIVE) +DOWNLOAD = wget --no-check-certificate -t3 -T60 -c -P $(ARCHIVE) # unpack archives into build directory UNTAR = tar -C $(BUILD_TMP) -xf $(ARCHIVE)