From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 07/10] rust: Enable more checks for when to install package files Date: Tue, 01 Feb 2022 13:52:43 +0000 Message-ID: <20220201135246.4096955-7-michael.tremer@ipfire.org> In-Reply-To: <20220201135246.4096955-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4263340970766167843==" List-Id: --===============4263340970766167843== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Signed-off-by: Michael Tremer --- lfs/Config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs/Config b/lfs/Config index 3ae5425ee..d2f9c4bf9 100644 --- a/lfs/Config +++ b/lfs/Config @@ -213,7 +213,7 @@ CARGO_TARGET_CHECK =3D $(CARGO) metadata --format-version= 1 --no-deps | \ =20 define CARGO_INSTALL mkdir -pv "$(CRATE_PATH)" && \ - if $(call CARGO_TARGET_CHECK,lib); then \ + if $(call CARGO_TARGET_CHECK,lib) || $(call CARGO_TARGET_CHECK,rlib) || $(c= all CARGO_TARGET_CHECK,proc-macro); then \ awk \ '/^\\\[((.+\\\.)?((dev|build)-)?dependencies|features)/{f=3D1;next} /^\\\= [/{f=3D0}; !f' \ < Cargo.toml > Cargo.toml.deps && \ --=20 2.30.2 --===============4263340970766167843==--