mirror of
https://github.com/apache/nuttx.git
synced 2026-06-06 00:04:17 +08:00
Replace all wget with curl
wget is missing from some system (like macOS and Windows native), it's better to use curl to simplify build environment. Signed-off-by: Huang Qi <huangqi3@xiaomi.com>
This commit is contained in:
@@ -98,10 +98,10 @@ tzbin:
|
||||
mkdir tzbin
|
||||
|
||||
tzcode-latest.tar.gz:
|
||||
$(Q) wget --retr-symlinks ftp://ftp.iana.org/tz/tzcode-latest.tar.gz
|
||||
$(Q) curl -L -O ftp://ftp.iana.org/tz/tzcode-latest.tar.gz
|
||||
|
||||
tzdata-latest.tar.gz:
|
||||
$(Q) wget --retr-symlinks ftp://ftp.iana.org/tz/tzdata-latest.tar.gz
|
||||
$(Q) curl -L -O ftp://ftp.iana.org/tz/tzdata-latest.tar.gz
|
||||
|
||||
.tzunpack: tzcode tzcode-latest.tar.gz tzdata-latest.tar.gz
|
||||
$(Q) tar zx -C tzcode -f tzcode-latest.tar.gz
|
||||
|
||||
Reference in New Issue
Block a user