We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff92c55 commit ea12980Copy full SHA for ea12980
GNUmakefile
@@ -354,8 +354,8 @@ toybox-src:
354
busybox-src:
355
if [ ! -e "$(BUSYBOX_SRC)" ] ; then \
356
mkdir -p "$(BUSYBOX_ROOT)" ; \
357
- curl -Ls "https://busybox.net/downloads/busybox-$(BUSYBOX_VER).tar.bz2" -o "$(BUSYBOX_ROOT)/$(BUSYBOX_VER).tar.bz2" ; \
358
- tar -C "$(BUSYBOX_ROOT)" -xf "$(BUSYBOX_ROOT)/busybox-$(BUSYBOX_VER).tar.bz2" ; \
+ curl -Ls "https://github.com/mirror/busybox/archive/refs/tags/$(subst .,_,$(BUSYBOX_VER)).tar.gz" -o "$(BUSYBOX_ROOT)/busybox-$(BUSYBOX_VER).tar.gz" ; \
+ tar -C "$(BUSYBOX_ROOT)" -xf "$(BUSYBOX_ROOT)/busybox-$(BUSYBOX_VER).tar.gz" ; \
359
fi ;
360
361
# This is a busybox-specific config file their test suite wants to parse.
0 commit comments