3
0
Fork 0
forked from mirrors/nixpkgs

GNU Guile: Disable GC-sensitive tests.

The "Unused modules are removed" test happens to fail sometimes on
i686-linux.

svn path=/nixpkgs/trunk/; revision=30416
This commit is contained in:
Ludovic Courtès 2011-11-13 22:15:58 +00:00
parent e98264fe8f
commit c62c173944

View file

@ -29,9 +29,8 @@ rec {
enableParallelBuilding = true;
patches =
stdenv.lib.optionals (coverageAnalysis != null)
[ ./gcov-file-name.patch ./disable-gc-sensitive-tests.patch ];
patches = [ ./disable-gc-sensitive-tests.patch ] ++
(stdenv.lib.optional (coverageAnalysis != null) ./gcov-file-name.patch);
postInstall = ''
wrapProgram $out/bin/guile-snarf --prefix PATH : "${gawk}/bin"