findutils: Fix build on native FreeBSD

This commit is contained in:
Audrey Dutcher 2024-05-14 13:42:58 -07:00 committed by Sandro Jäckel
parent e202aa82c4
commit bd5f19d0c1
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

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;