Merge pull request #223364 from trofi/libenf-non-parallel

libelf: disable parallel installs
This commit is contained in:
Sergei Trofimovich 2023-03-27 18:53:32 +01:00 committed by GitHub
commit 3b8f051803
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,6 +24,11 @@ stdenv.mkDerivation rec {
];
enableParallelBuilding = true;
# Lacks dependencies:
# mkdir ...-libelf-0.8.13/lib
# mkdir ...-libelf-0.8.13/lib
# mkdir: cannot create directory '...-libelf-0.8.13/lib': File exists
enableParallelInstalling = false;
doCheck = true;