summary refs log tree commit diff
path: root/pkgs/development/tools/misc/automake/automake-1.16.x.nix
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2018-08-11 16:34:22 +0000
committerGitHub <noreply@github.com>2018-08-11 16:34:22 +0000
commita68e5e918e52f1b45a13c585f6b015a254e94f18 (patch)
tree6e825fe861796e75ddf87da42d3f63c4c4889b88 /pkgs/development/tools/misc/automake/automake-1.16.x.nix
parentb9c8d68452aca58f4588788b78ec2e255f5b6192 (diff)
parent35c9435d15b31bdfc000d67670b7ac58dca30c4e (diff)
downloadnixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.tar
nixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.tar.gz
nixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.tar.bz2
nixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.tar.lz
nixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.tar.xz
nixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.tar.zst
nixlib-a68e5e918e52f1b45a13c585f6b015a254e94f18.zip
Merge pull request #44825 from oxij/docheck/continues-in-a-big-way
treewide: enable working, fix fixable, disable broken tests
Diffstat (limited to 'pkgs/development/tools/misc/automake/automake-1.16.x.nix')
-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;