From dfc4117e901f27276ea1ce81c852bf4d52959961 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 9 Feb 2011 14:08:32 +0000 Subject: [PATCH] * The GC library can't be found on Solaris (http://hydra.nixos.org/build/890714), so don't build with GC support for now. --- release.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.nix b/release.nix index 1fc9405bdb..a1ea34547b 100644 --- a/release.nix +++ b/release.nix @@ -75,7 +75,7 @@ let configureFlags = '' --disable-init-state --with-bzip2=${bzip2} --with-sqlite=${sqlite} - --enable-gc + ${lib.optionalString (system != "i386-sunos") "--enable-gc"} ''; };