about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-08-10 03:22:49 +0000
committerJan Malakhovski <oxij@oxij.org>2018-08-11 09:35:18 +0000
commitcf84bc03749de17ebce895747ea392f86b6f82ef (patch)
tree51d9a763f73cb6682181b521612b1c882db2d83a /pkgs
parent9bab07e54109a71ac2be21f2d048df7cac63daf6 (diff)
downloadnixlib-cf84bc03749de17ebce895747ea392f86b6f82ef.tar
nixlib-cf84bc03749de17ebce895747ea392f86b6f82ef.tar.gz
nixlib-cf84bc03749de17ebce895747ea392f86b6f82ef.tar.bz2
nixlib-cf84bc03749de17ebce895747ea392f86b6f82ef.tar.lz
nixlib-cf84bc03749de17ebce895747ea392f86b6f82ef.tar.xz
nixlib-cf84bc03749de17ebce895747ea392f86b6f82ef.tar.zst
nixlib-cf84bc03749de17ebce895747ea392f86b6f82ef.zip
automake116x: disable tests, also cleanup
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.16.x.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/automake/automake-1.16.x.nix b/pkgs/development/tools/misc/automake/automake-1.16.x.nix
index 6646b8472526..478fc14d680d 100644
--- a/pkgs/development/tools/misc/automake/automake-1.16.x.nix
+++ b/pkgs/development/tools/misc/automake/automake-1.16.x.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, perl, autoconf, doCheck ? false }:
+{ stdenv, fetchurl, perl, autoconf }:
 
 stdenv.mkDerivation rec {
   name = "automake-1.16.1";
@@ -16,7 +16,8 @@ stdenv.mkDerivation rec {
   # Disable indented log output from Make, otherwise "make.test" will
   # fail.
   preCheck = "unset NIX_INDENT_MAKE";
-  inherit doCheck;
+  doCheck = false; # takes _a lot_ of time, fails 3 out of 2698 tests, all seem to be related to paths
+  doInstallCheck = false; # runs the same thing, fails the same tests
 
   # The test suite can run in parallel.
   enableParallelBuilding = true;