From: Jaroslav Kysela Date: Wed, 23 Aug 2017 10:43:14 +0000 (+0200) Subject: Makefile.static: add -no-check-certificate to wget X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e2f1f15283ec5acf5b9ef90b14ca5ef9f904aba;p=thirdparty%2Ftvheadend.git Makefile.static: add -no-check-certificate to wget --- diff --git a/Makefile.static b/Makefile.static index d43d8d3ac..c5155600b 100644 --- a/Makefile.static +++ b/Makefile.static @@ -83,7 +83,7 @@ define DOWNLOAD @mkdir -p $(LIB_ROOT)/build @if test -z "$${TVHEADEND_FILE_CACHE}"; then \ printf "WGET $(1)\n"; \ - wget --no-verbose -O $(2) $(1); \ + wget --no-verbose --no-check-certificate -O $(2) $(1); \ else \ file=$$(basename $(2)); \ cp "$$TVHEADEND_FILE_CACHE/$${file}" $(2); \