mirror of https://github.com/OpenIPC/firmware.git
Fix 'Unable to establish SSL connection' in make prepare
parent
fd484dc774
commit
469853ddd5
5
Makefile
5
Makefile
|
@ -48,7 +48,10 @@ clean:
|
|||
|
||||
prepare: $(BR_DIR)
|
||||
$(ROOT_DIR)/buildroot-$(BR_VER).tar.gz:
|
||||
wget -O $@ --header="Host: buildroot.org" --no-check-certificate https://buildroot.org/downloads/buildroot-$(BR_VER).tar.gz
|
||||
wget -O $@ \
|
||||
--retry-connrefused --continue --timeout=15 \
|
||||
https://buildroot.org/downloads/buildroot-$(BR_VER).tar.gz \
|
||||
2>/dev/null
|
||||
|
||||
$(BR_DIR): $(ROOT_DIR)/buildroot-$(BR_VER).tar.gz
|
||||
tar -C $(ROOT_DIR) -xf buildroot-$(BR_VER).tar.gz
|
||||
|
|
Loading…
Reference in New Issue