Fixed cross-compiling by replacing wget with curl (#1759)
It looks like the default docker image used by cross doesn't have wget installed. This causes builds to fail. This can be fixed by switching to curl. ## Issue Addressed cross-compiling was broken (at least for build-aarch64) ## Proposed Changes swap wget for curl
This commit is contained in:
parent
83ae12a1b4
commit
e9d5bade36
@ -10,7 +10,7 @@ $(OUTPUT_DIR): $(TARBALL)
|
|||||||
tar --strip-components=1 -xzf $^ -C $@
|
tar --strip-components=1 -xzf $^ -C $@
|
||||||
|
|
||||||
$(TARBALL):
|
$(TARBALL):
|
||||||
wget $(ARCHIVE_URL) -O $@
|
curl -L -o $@ $(ARCHIVE_URL)
|
||||||
|
|
||||||
clean-test-files:
|
clean-test-files:
|
||||||
rm -rf $(OUTPUT_DIR)
|
rm -rf $(OUTPUT_DIR)
|
||||||
|
Loading…
Reference in New Issue
Block a user