1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

make: switch download to https

This commit is contained in:
Michael Gehring 2015-12-21 21:37:57 +01:00
parent 6baf495ce2
commit b050f6ad78

View file

@ -231,7 +231,7 @@ test: $(addprefix test_integration_,$(TESTS))
busybox-src: busybox-src:
if [ ! -e $(BUSYBOX_SRC) ]; then \ if [ ! -e $(BUSYBOX_SRC) ]; then \
mkdir -p $(BUSYBOX_ROOT); \ 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; \ tar -C $(BUSYBOX_ROOT) -xf $(BUSYBOX_ROOT)/busybox-$(BUSYBOX_VER).tar.bz2; \
fi; \ fi; \