From 9c44d42992ed33550d21268b505ddf5c40ed14bf Mon Sep 17 00:00:00 2001 From: jiaxiao zhou Date: Thu, 18 Jan 2024 19:06:45 +0000 Subject: [PATCH] fixed the commit rev Signed-off-by: jiaxiao zhou --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3b28552..e538aca 100644 --- a/Makefile +++ b/Makefile @@ -75,7 +75,7 @@ build: $(foreach shim,$(SHIMS),build-$(shim)-cross-$(TARGET)) # pin cross to a specific commit to avoid breaking changes .PHONY: install-cross install-cross: - @if [ -z $$(which cross) ]; then cargo install cross --git https://github.com/cross-rs/cross --rev 5896ed1359642510855ca9ee50ce7fdf75c50e3c#5896ed13; fi + @if [ -z $$(which cross) ]; then cargo install cross --git https://github.com/cross-rs/cross --rev 5896ed1359642510855ca9ee50ce7fdf75c50e3c; fi # build-cross can be be used to build any cross supported target (make build-cross-x86_64-unknown-linux-musl) .PHONY: $(BUILD_TARGETS)