PKGBUILDs/extra/rust/0001-bootstrap-Change-libexec-dir.patch

46 lines
2 KiB
Diff
Raw Normal View History

2021-05-07 00:05:08 +00:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2023-07-16 14:54:25 +00:00
From: "Jan Alexander Steffens (heftig)" <heftig@archlinux.org>
2021-05-07 00:05:08 +00:00
Date: Thu, 6 May 2021 20:14:58 +0200
Subject: [PATCH] bootstrap: Change libexec dir
---
2023-01-28 17:25:54 +00:00
src/bootstrap/dist.rs | 4 ++--
src/bootstrap/tool.rs | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
2021-05-07 00:05:08 +00:00
diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs
2023-08-29 12:52:41 +00:00
index b34a4b2dc63b..be5ecfda261a 100644
2021-05-07 00:05:08 +00:00
--- a/src/bootstrap/dist.rs
+++ b/src/bootstrap/dist.rs
2023-06-03 19:07:49 +00:00
@@ -420,7 +420,7 @@ fn prepare_image(builder: &Builder<'_>, compiler: Compiler, image: &Path) {
2023-04-24 12:47:24 +00:00
},
builder.kind,
) {
- builder.install(&ra_proc_macro_srv, &image.join("libexec"), 0o755);
+ builder.install(&ra_proc_macro_srv, &image.join("lib"), 0o755);
}
2022-11-05 02:34:29 +00:00
let libdir_relative = builder.libdir_relative(compiler);
2023-08-29 12:52:41 +00:00
@@ -1081,7 +1081,7 @@ fn run(self, builder: &Builder<'_>) -> Option<GeneratedTarball> {
2021-05-07 00:05:08 +00:00
for dirent in fs::read_dir(cargo.parent().unwrap()).expect("read_dir") {
let dirent = dirent.expect("read dir entry");
if dirent.file_name().to_str().expect("utf8").starts_with("cargo-credential-") {
- tarball.add_file(&dirent.path(), "libexec", 0o755);
+ tarball.add_file(&dirent.path(), "lib", 0o755);
}
}
2022-12-16 19:42:50 +00:00
diff --git a/src/bootstrap/tool.rs b/src/bootstrap/tool.rs
2023-08-29 12:52:41 +00:00
index 06c031788629..b7ca91a28157 100644
2022-12-16 19:42:50 +00:00
--- a/src/bootstrap/tool.rs
+++ b/src/bootstrap/tool.rs
2023-07-16 14:54:25 +00:00
@@ -719,7 +719,7 @@ fn run(self, builder: &Builder<'_>) -> Option<PathBuf> {
2022-12-16 19:42:50 +00:00
// Copy `rust-analyzer-proc-macro-srv` to `<sysroot>/libexec/`
// so that r-a can use it.
- let libexec_path = builder.sysroot(self.compiler).join("libexec");
+ let libexec_path = builder.sysroot(self.compiler).join("lib");
t!(fs::create_dir_all(&libexec_path));
builder.copy(&path, &libexec_path.join("rust-analyzer-proc-macro-srv"));