Merge pull request #157279 from trofi/sequential-libf2c

libf2c: explicitly disable parallel builds
This commit is contained in:
Bobby Rong 2022-01-30 20:58:56 +08:00 committed by GitHub
commit 7524067daa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -27,6 +27,10 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ];
# Makefile is missing depepdencies on generated headers:
# main.c:4:10: fatal error: signal1.h: No such file or directory
enableParallelBuilding = false;
meta = {
description = "F2c converts Fortran 77 source code to C";
homepage = "http://www.netlib.org/f2c/";