Unverified Commit a0564731 authored by John Ericson's avatar John Ericson Committed by GitHub
Browse files

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

findutils: Fix build on native FreeBSD
parents 493ee155 bd5f19d0
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;