summary refs log tree commit diff
path: root/pkgs/development/interpreters/guile
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2011-11-13 22:15:58 +0000
committerLudovic Courtès <ludo@gnu.org>2011-11-13 22:15:58 +0000
commitc62c1739446cc99bbfbf4a8fa88bdadb1965a1bb (patch)
treea585cac19c9d2e816fc2aad0afd759c7a632c393 /pkgs/development/interpreters/guile
parente98264fe8f09795f337608758a9d6cd8cf620050 (diff)
downloadnixlib-c62c1739446cc99bbfbf4a8fa88bdadb1965a1bb.tar
nixlib-c62c1739446cc99bbfbf4a8fa88bdadb1965a1bb.tar.gz
nixlib-c62c1739446cc99bbfbf4a8fa88bdadb1965a1bb.tar.bz2
nixlib-c62c1739446cc99bbfbf4a8fa88bdadb1965a1bb.tar.lz
nixlib-c62c1739446cc99bbfbf4a8fa88bdadb1965a1bb.tar.xz
nixlib-c62c1739446cc99bbfbf4a8fa88bdadb1965a1bb.tar.zst
nixlib-c62c1739446cc99bbfbf4a8fa88bdadb1965a1bb.zip
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
Diffstat (limited to 'pkgs/development/interpreters/guile')
-rw-r--r--pkgs/development/interpreters/guile/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/guile/default.nix b/pkgs/development/interpreters/guile/default.nix
index 839de3c053d4..bb64d35f8a47 100644
--- a/pkgs/development/interpreters/guile/default.nix
+++ b/pkgs/development/interpreters/guile/default.nix
@@ -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"