Merge pull request #311771 from rhelmot/freebsd-minimal3/findutils

findutils: Fix build on native FreeBSD
This commit is contained in:
John Ericson 2024-05-22 15:39:34 -04:00 committed by GitHub
commit a0564731be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
# Since glibc-2.25 the i686 tests hang reliably right after test-sleep.
doCheck
= !stdenv.hostPlatform.isDarwin
&& !stdenv.hostPlatform.isFreeBSD
&& !(stdenv.hostPlatform.libc == "glibc" && stdenv.hostPlatform.isi686)
&& (stdenv.hostPlatform.libc != "musl")
&& stdenv.hostPlatform == stdenv.buildPlatform;