From b050f6ad789b93d6f837be74e1d62d922ac327ce Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Mon, 21 Dec 2015 21:37:57 +0100 Subject: [PATCH] make: switch download to https --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3c26e4c0a..76aba6cf4 100644 --- a/Makefile +++ b/Makefile @@ -231,7 +231,7 @@ test: $(addprefix test_integration_,$(TESTS)) busybox-src: if [ ! -e $(BUSYBOX_SRC) ]; then \ mkdir -p $(BUSYBOX_ROOT); \ - wget http://busybox.net/downloads/busybox-$(BUSYBOX_VER).tar.bz2 -P $(BUSYBOX_ROOT); \ + wget https://busybox.net/downloads/busybox-$(BUSYBOX_VER).tar.bz2 -P $(BUSYBOX_ROOT); \ tar -C $(BUSYBOX_ROOT) -xf $(BUSYBOX_ROOT)/busybox-$(BUSYBOX_VER).tar.bz2; \ fi; \