From a960db09f4c5b5f5f2ff3e3ad9d3cf3b853d5567 Mon Sep 17 00:00:00 2001 From: PktSurf Date: Fri, 23 Sep 2022 12:26:10 +0530 Subject: [PATCH] Added variable to preserve static libraries in base/rust --- base/eudev/eudev.SMBuild | 2 -- base/rust/rust.SMBuild | 4 +++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/base/eudev/eudev.SMBuild b/base/eudev/eudev.SMBuild index 72a7531..c0387d0 100755 --- a/base/eudev/eudev.SMBuild +++ b/base/eudev/eudev.SMBuild @@ -27,8 +27,6 @@ build() { mkdir -p $pkg/etc/udev/rules.d cp $srcdir/*.rules $pkg/etc/udev/rules.d/ - mv $pkg/share/pkgconfig/* $pkg/lib/pkgconfig/ - cp COPYING $pkgdocs/ mkfinalpkg diff --git a/base/rust/rust.SMBuild b/base/rust/rust.SMBuild index b9bf10e..93d4c46 100755 --- a/base/rust/rust.SMBuild +++ b/base/rust/rust.SMBuild @@ -5,6 +5,8 @@ homepage="https://rust-lang.org" download="https://static.rust-lang.org/dist/rustc-$version-src.tar.xz" desc="A safe, concurrent, practical language" requires="gcc-libs bash llvm clang gdb" +# We don't want .rlib files to be removed +preservestaticlibs=1 build() { mkandenterbuilddir @@ -17,7 +19,7 @@ build() { # If a rust toolchain does not already exist, extract and install one of the provided ready-to-use toolchains if [ ! -x /bin/rustc ] ; then # Create a temporary directory that will house a prebuilt architecture-specific rust toolchain provided by rust developers for bootstrapping - mkdir temp-toolchain + mkdir -p temp-toolchain cd temp-toolchain # Extract the toolchain into it