mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Autoconf: Disable the test suite on {Cyg,Dar}win.
svn path=/nixpkgs/trunk/; revision=16499
This commit is contained in:
parent
60027c8198
commit
8f6228ee5b
@ -10,7 +10,13 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ m4 perl ];
|
||||
|
||||
doCheck = true;
|
||||
# FIXME: The test suite fails on Darwin (see
|
||||
# http://thread.gmane.org/gmane.comp.sysutils.autoconf.bugs/6813) and on
|
||||
# Cygwin (see http://hydra.nixos.org/build/53814; yet to be reported
|
||||
# upstream).
|
||||
doCheck =
|
||||
(builtins.currentSystem != "i686-darwin")
|
||||
&& (builtins.currentSystem != "i686-cygwin");
|
||||
|
||||
# Don't fixup "#! /bin/sh" in Autoconf, otherwise it will use the
|
||||
# "fixed" path in generated files!
|
||||
|
Loading…
Reference in New Issue
Block a user