mirror of
git://slackware.nl/current.git
synced 2024-12-31 10:28:29 +01:00
cdea680437
a/hostname-3.23-x86_64-1.txz: Upgraded. a/kernel-firmware-20191108_f1100dd-noarch-1.txz: Upgraded. ap/mariadb-10.4.10-x86_64-1.txz: Upgraded. kde/kdelibs-4.14.38-x86_64-5.txz: Rebuilt. Remove hardcoded TLSv1 allowing TLSv1.1 and TLSv1.2. Thanks to PJ Beers. kde/kdepim-4.14.10-x86_64-5.txz: Rebuilt. Remove hardcoded TLSv1 allowing TLSv1.1 and TLSv1.2. Thanks to PJ Beers. kde/kdepimlibs-4.14.10-x86_64-9.txz: Rebuilt. Remove hardcoded TLSv1 allowing TLSv1.1 and TLSv1.2. Thanks to PJ Beers. l/adwaita-icon-theme-3.34.3-noarch-1.txz: Upgraded. testing/packages/rust-1.39.0-x86_64-1.txz: Upgraded.
29 lines
1.2 KiB
Diff
29 lines
1.2 KiB
Diff
--- ./src/bootstrap/dist.rs.orig 2019-11-07 18:12:33.835944390 -0600
|
|
+++ ./src/bootstrap/dist.rs 2019-11-07 22:05:17.991788876 -0600
|
|
@@ -676,7 +676,6 @@
|
|
}
|
|
|
|
builder.ensure(compile::Std { compiler, target });
|
|
- builder.ensure(compile::Rustc { compiler, target });
|
|
|
|
let image = tmpdir(builder).join(format!("{}-{}-image", name, target));
|
|
let _ = fs::remove_dir_all(&image);
|
|
@@ -691,12 +690,12 @@
|
|
builder.copy(&path, &dst.join(path.file_name().unwrap()));
|
|
}
|
|
}
|
|
- let stamp = dbg!(compile::librustc_stamp(builder, compiler_to_use, target));
|
|
- for (path, host) in builder.read_stamp_file(&stamp) {
|
|
- if !host {
|
|
- builder.copy(&path, &dst.join(path.file_name().unwrap()));
|
|
- }
|
|
- }
|
|
+ // let stamp = dbg!(compile::librustc_stamp(builder, compiler_to_use, target));
|
|
+ // for (path, host) in builder.read_stamp_file(&stamp) {
|
|
+ // if !host {
|
|
+ // builder.copy(&path, &dst.join(path.file_name().unwrap()));
|
|
+ // }
|
|
+ // }
|
|
|
|
let mut cmd = rust_installer(builder);
|
|
cmd.arg("generate")
|