sbcl: fix disabling threadSupport

This commit is contained in:
Tomas Hlavaty 2016-11-30 07:55:32 +01:00 committed by Michael Raskin
parent 13f82b0445
commit 194a2ae86a

View File

@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
(disable (x) (disable (x)
(setf features (remove x features)))) (setf features (remove x features))))
'' ''
+ stdenv.lib.optionalString threadSupport "(enable :sb-thread)" + (if threadSupport then "(enable :sb-thread)" else "(disable :sb-thread)")
+ stdenv.lib.optionalString stdenv.isArm "(enable :arm)" + stdenv.lib.optionalString stdenv.isArm "(enable :arm)"
+ '' + ''
)) " > customize-target-features.lisp )) " > customize-target-features.lisp