aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2011-02-09 14:08:32 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2011-02-09 14:08:32 +0000
commitdfc4117e901f27276ea1ce81c852bf4d52959961 (patch)
tree1064bb8f889dcf1bbb3353c25f0b967c19b8b42b
parentd159ea1b7ec007fa5e4d4bef540453c9c09c3984 (diff)
* The GC library can't be found on Solaris
(http://hydra.nixos.org/build/890714), so don't build with GC support for now.
-rw-r--r--release.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/release.nix b/release.nix
index 1fc9405bd..a1ea34547 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"}
'';
};