coreutils: Disable tests on non-GNU platforms.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19521
This commit is contained in:
parent
fa5a119fcd
commit
bf1ffcc595
@ -11,8 +11,10 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [ perl gmp ] ++ stdenv.lib.optional aclSupport acl;
|
buildInputs = [ perl gmp ] ++ stdenv.lib.optional aclSupport acl;
|
||||||
|
|
||||||
# The tests are known broken on Cygwin
|
# The tests are known broken on Cygwin
|
||||||
# (http://thread.gmane.org/gmane.comp.gnu.core-utils.bugs/19025).
|
# (http://thread.gmane.org/gmane.comp.gnu.core-utils.bugs/19025),
|
||||||
doCheck = (stdenv.system != "i686-cygwin");
|
# Darwin (http://thread.gmane.org/gmane.comp.gnu.core-utils.bugs/19351),
|
||||||
|
# and {Open,Free}BSD.
|
||||||
|
doCheck = (stdenv ? glibc);
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://www.gnu.org/software/coreutils/;
|
homepage = http://www.gnu.org/software/coreutils/;
|
||||||
|
Loading…
Reference in New Issue
Block a user