From mboxrd@z Thu Jan 1 00:00:00 1970 From: Arne Fitzenreiter To: development@lists.ipfire.org Subject: [PATCH 1/3] strip: exclude rust compiler Date: Sun, 08 Oct 2023 09:27:20 +0200 Message-ID: <20231008072722.3900296-1-arne_f@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1715047825417138318==" List-Id: --===============1715047825417138318== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit this fail on riscv64 because it is compiled with lvm and we not need to strip not shipped buildtime deps. Signed-off-by: Arne Fitzenreiter --- lfs/strip | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lfs/strip b/lfs/strip index 404db0727..8fc7218e1 100644 --- a/lfs/strip +++ b/lfs/strip @@ -64,6 +64,11 @@ else --exclude=/usr/lib/go \ --exclude=/usr/lib/vdr \ --exclude=/usr/sbin/vdr \ + --exclude=/usr/bin/cargo \ + --exclude=/usr/bin/rustdoc \ + --exclude=/usr/bin/rustc \ + --exclude=/usr/libexec/rust-analyzer-proc-macro-srv \ + --exclude=/usr/libexec/cargo-credential-1password \ --exclude=/usr/src \ --exclude=/var/tmp endif -- 2.39.2 --===============1715047825417138318==--