From e9d5bade367e4720a0ceea9d15fe994256f5ead6 Mon Sep 17 00:00:00 2001 From: ethDreamer Date: Sun, 11 Oct 2020 23:58:13 +0000 Subject: [PATCH] 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 --- validator_client/slashing_protection/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validator_client/slashing_protection/Makefile b/validator_client/slashing_protection/Makefile index 5abb6c0a4..ecc48b314 100644 --- a/validator_client/slashing_protection/Makefile +++ b/validator_client/slashing_protection/Makefile @@ -10,7 +10,7 @@ $(OUTPUT_DIR): $(TARBALL) tar --strip-components=1 -xzf $^ -C $@ $(TARBALL): - wget $(ARCHIVE_URL) -O $@ + curl -L -o $@ $(ARCHIVE_URL) clean-test-files: rm -rf $(OUTPUT_DIR)