Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/build-support/rust162/0001-bootstrap-Change-libexec-dir.patch
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2022-09-16 09:31:07 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2022-09-16 09:31:07 +0200
commit95becdb3dc32cd42af12850a9228e0f650dcca1d (patch)
tree464fa474cbaf79c4ce9c1422b6d0bbd364cc4fae /build-support/rust162/0001-bootstrap-Change-libexec-dir.patch
parent590c88fd77570b07956c28f6baaacb38d366d5c0 (diff)
disabled rust162 in build-support, rust is now 1.63
Diffstat (limited to 'build-support/rust162/0001-bootstrap-Change-libexec-dir.patch')
-rw-r--r--build-support/rust162/0001-bootstrap-Change-libexec-dir.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/build-support/rust162/0001-bootstrap-Change-libexec-dir.patch b/build-support/rust162/0001-bootstrap-Change-libexec-dir.patch
deleted file mode 100644
index 903a38dc..00000000
--- a/build-support/rust162/0001-bootstrap-Change-libexec-dir.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
-From: "Jan Alexander Steffens (heftig)" <jan.steffens@gmail.com>
-Date: Thu, 6 May 2021 20:14:58 +0200
-Subject: [PATCH] bootstrap: Change libexec dir
-
----
- src/bootstrap/dist.rs | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/bootstrap/dist.rs b/src/bootstrap/dist.rs
-index b1fae356d893..a9783708d7a7 100644
---- a/src/bootstrap/dist.rs
-+++ b/src/bootstrap/dist.rs
-@@ -950,7 +950,7 @@ fn run(self, builder: &Builder<'_>) -> Option<GeneratedTarball> {
- 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);
- }
- }
-