mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
GNU M4: Disable tests on Cygwin.
svn path=/nixpkgs/trunk/; revision=34277
This commit is contained in:
parent
dc4035a4bd
commit
472a9d6e3d
1 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,8 @@ stdenv.mkDerivation {
|
|||
sha256 = "035r7ma272j2cwni2961jp22k6bn3n9xwn3b3qbcn2yrvlghql22";
|
||||
};
|
||||
|
||||
doCheck = !stdenv.isDarwin;
|
||||
doCheck = !stdenv.isDarwin
|
||||
&& !stdenv.isCygwin; # XXX: `test-dup2' fails on Cygwin
|
||||
|
||||
# Upstream is aware of it; it may be in the next release.
|
||||
patches = [ ./s_isdir.patch ./readlink-EINVAL.patch ];
|
||||
|
|
Loading…
Reference in a new issue