From 4aa5a45af1a796d6f398b7f984c778bdc666fdbe Mon Sep 17 00:00:00 2001 From: gnzlbg <gonzalobg88@gmail.com> Date: Wed, 15 May 2019 13:04:41 +0200 Subject: [PATCH] Correct assert for mips+musl --- libc-test/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc-test/build.rs b/libc-test/build.rs index 33fb1358..25eb8e1f 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -2410,7 +2410,7 @@ fn test_linux(target: &str) { } if !musl || mips { - assert!(gnu || uclibc || (mips && !musl)); + assert!(gnu || uclibc || (mips && musl)); headers! { cfg: "linux/memfd.h" }; } -- GitLab