From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 06/10] rust: Add switch to skip bin check Date: Tue, 01 Feb 2022 13:52:42 +0000 Message-ID: <20220201135246.4096955-6-michael.tremer@ipfire.org> In-Reply-To: <20220201135246.4096955-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4532132040701732719==" List-Id: --===============4532132040701732719== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This does not seem to work very reliable, so we need manually disable this for some packages. Signed-off-by: Michael Tremer --- lfs/Config | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lfs/Config b/lfs/Config index fb5745df0..3ae5425ee 100644 --- a/lfs/Config +++ b/lfs/Config @@ -182,6 +182,9 @@ replace-with =3D "local-registry" endef export CARGO_CONFIG =20 +# Set to false if you want to skip the binary install step +CARGO_HAS_BIN =3D true + CARGO =3D \ CARGOPATH=3D$(CARGO_PATH) \ RUSTC_BOOTSTRAP=3D1 \ @@ -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.jso= n; \ 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 --=20 2.30.2 --===============4532132040701732719==--