summary refs log tree commit diff
path: root/pkgs/development/tools/misc/automake/automake-1.12.x.nix
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2012-08-15 09:56:13 +0200
committerLluís Batlle i Rossell <viric@viric.name>2012-08-15 09:56:13 +0200
commiteadcd7dab64aa2cabd7fdf0a4be90cc6fdf5b168 (patch)
treeac3fcf71d96ac7895844e1df006f92c549d4e40d /pkgs/development/tools/misc/automake/automake-1.12.x.nix
parent8a53159a32837d6b4be79bd26a4a4467d0fe678f (diff)
downloadnixlib-eadcd7dab64aa2cabd7fdf0a4be90cc6fdf5b168.tar
nixlib-eadcd7dab64aa2cabd7fdf0a4be90cc6fdf5b168.tar.gz
nixlib-eadcd7dab64aa2cabd7fdf0a4be90cc6fdf5b168.tar.bz2
nixlib-eadcd7dab64aa2cabd7fdf0a4be90cc6fdf5b168.tar.lz
nixlib-eadcd7dab64aa2cabd7fdf0a4be90cc6fdf5b168.tar.xz
nixlib-eadcd7dab64aa2cabd7fdf0a4be90cc6fdf5b168.tar.zst
nixlib-eadcd7dab64aa2cabd7fdf0a4be90cc6fdf5b168.zip
automake: Disabling tests on mips.
There is a test that fails on mips, and that breaks the nix build.
The text does not exist anymore in automake upstream git, so the next
version may not need this mips-specific disabling.
Diffstat (limited to 'pkgs/development/tools/misc/automake/automake-1.12.x.nix')
-rw-r--r--pkgs/development/tools/misc/automake/automake-1.12.x.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/tools/misc/automake/automake-1.12.x.nix b/pkgs/development/tools/misc/automake/automake-1.12.x.nix
index e2db84d2fc34..66d43974f6e4 100644
--- a/pkgs/development/tools/misc/automake/automake-1.12.x.nix
+++ b/pkgs/development/tools/misc/automake/automake-1.12.x.nix
@@ -23,7 +23,8 @@ stdenv.mkDerivation rec {
     sed -i -e 's|t/aclocal7.sh||' Makefile.in
   '';
 
-  inherit doCheck;
+  # Bug in a test in automake. Upstream git already fixed it removing the test.
+  doCheck = if stdenv.isMips then false else doCheck;
 
   # The test suite can run in parallel.
   enableParallelBuilding = true;