guile: fix non-GNU builds

This commit is contained in:
Ludovic Courtès 2013-04-21 12:06:45 +02:00
parent 7dd6b5f812
commit 6aa8c5761c

View file

@ -106,10 +106,8 @@
//
(if stdenv.isFreeBSD
then {
# XXX: Thread support is currently broken on FreeBSD and Solaris (namely
# the `SCM_I_IS_THREAD' assertion in `scm_spawn_thread' is hit.)
configureFlags = [ "--without-threads" ];
}
else {}))
(stdenv.lib.optionalAttrs (!stdenv.isLinux) {
# Work around <http://bugs.gnu.org/14201>.
SHELL = "/bin/sh";
CONFIG_SHELL = "/bin/sh";
}))