lol

automake116x: disable tests, also cleanup

+3 -2
+3 -2
pkgs/development/tools/misc/automake/automake-1.16.x.nix
··· 1 - { stdenv, fetchurl, perl, autoconf, doCheck ? false }: 1 + { stdenv, fetchurl, perl, autoconf }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "automake-1.16.1"; ··· 16 16 # Disable indented log output from Make, otherwise "make.test" will 17 17 # fail. 18 18 preCheck = "unset NIX_INDENT_MAKE"; 19 - inherit doCheck; 19 + doCheck = false; # takes _a lot_ of time, fails 3 out of 2698 tests, all seem to be related to paths 20 + doInstallCheck = false; # runs the same thing, fails the same tests 20 21 21 22 # The test suite can run in parallel. 22 23 enableParallelBuilding = true;