aboutsummaryrefslogtreecommitdiffstats
path: root/testing/cargo/musl-NFS_SUPER_MAGICK.patch
diff options
context:
space:
mode:
authorBartłomiej Piotrowski <b@bpiotrowski.pl>2016-08-06 10:34:33 +0200
committerBartłomiej Piotrowski <b@bpiotrowski.pl>2016-08-06 10:34:33 +0200
commit5fee4b40411daf859b4d7e78f3948549c3155184 (patch)
tree7eece103d5de6f158a6d732b97f7d40217c652ae /testing/cargo/musl-NFS_SUPER_MAGICK.patch
parent8488e8747aa7cb275882157b8a4a53c274c71927 (diff)
downloadaports-5fee4b40411daf859b4d7e78f3948549c3155184.tar.bz2
aports-5fee4b40411daf859b4d7e78f3948549c3155184.tar.xz
Revert "testing/cargo: new aport"
Diffstat (limited to 'testing/cargo/musl-NFS_SUPER_MAGICK.patch')
-rw-r--r--testing/cargo/musl-NFS_SUPER_MAGICK.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/testing/cargo/musl-NFS_SUPER_MAGICK.patch b/testing/cargo/musl-NFS_SUPER_MAGICK.patch
deleted file mode 100644
index 415766ad91..0000000000
--- a/testing/cargo/musl-NFS_SUPER_MAGICK.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-https://github.com/rust-lang/cargo/issues/2937
---- a/src/cargo/util/flock.rs
-+++ b/src/cargo/util/flock.rs
-@@ -282,7 +282,7 @@
- human(format!("failed to lock file: {}", path.display()))
- });
-
-- #[cfg(target_os = "linux")]
-+ #[cfg(all(target_os = "linux", not(target_env = "musl")))]
- fn is_on_nfs_mount(path: &Path) -> bool {
- use std::ffi::CString;
- use std::mem;
-@@ -302,7 +302,7 @@
- }
- }
-
-- #[cfg(not(target_os = "linux"))]
-+ #[cfg(any(not(target_os = "linux"), target_env = "musl"))]
- fn is_on_nfs_mount(_path: &Path) -> bool {
- false
- }