From aa64d51aa38ad1d2545a5c7c4c443a48ede038df Mon Sep 17 00:00:00 2001 From: Dmitry Ilyin Date: Fri, 26 Aug 2022 12:55:59 +0300 Subject: [PATCH] Replace wget options --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1609bd53..78cc8c0f 100644 --- a/Makefile +++ b/Makefile @@ -48,10 +48,9 @@ clean: prepare: $(BR_DIR) $(ROOT_DIR)/buildroot-$(BR_VER).tar.gz: - wget -O $@ \ - --header="Host: buildroot.org" --no-check-certificate \ + wget -O $@ -nv \ --retry-connrefused --continue --timeout=15 \ - https://buildroot.org/downloads/buildroot-$(BR_VER).tar.gz + http://buildroot.org/downloads/buildroot-$(BR_VER).tar.gz $(BR_DIR): $(ROOT_DIR)/buildroot-$(BR_VER).tar.gz tar -C $(ROOT_DIR) -xf buildroot-$(BR_VER).tar.gz