From: Michael Tremer Date: Fri, 28 Jan 2022 13:58:46 +0000 (+0000) Subject: rust: Add switch to skip bin check X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c16dd3aa0c89dbc73f1766a1fbde7bd85dff2b59;p=people%2Fms%2Fipfire-2.x.git rust: Add switch to skip bin check This does not seem to work very reliable, so we need manually disable this for some packages. Signed-off-by: Michael Tremer --- diff --git a/lfs/Config b/lfs/Config index fb5745df06..3ae5425ee4 100644 --- a/lfs/Config +++ b/lfs/Config @@ -182,6 +182,9 @@ replace-with = "local-registry" endef export CARGO_CONFIG +# Set to false if you want to skip the binary install step +CARGO_HAS_BIN = true + CARGO = \ CARGOPATH=$(CARGO_PATH) \ RUSTC_BOOTSTRAP=1 \ @@ -219,7 +222,7 @@ define CARGO_INSTALL install -v -m 644 Cargo.toml.deps $(CRATE_PATH)/Cargo.toml && \ echo "{\"files\":{},\"package\":\"\"}" > $(CRATE_PATH)/.cargo-checksum.json; \ fi && \ - if $(call CARGO_TARGET_CHECK,bin); then \ + if $(CARGO_HAS_BIN) && $(call CARGO_TARGET_CHECK,bin); then \ $(CARGO) install $(CARGO_OPTIONS) --no-track --path .; \ fi endef