mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
sbcl: fix disabling threadSupport
This commit is contained in:
parent
13f82b0445
commit
194a2ae86a
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
|||
(disable (x)
|
||||
(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)"
|
||||
+ ''
|
||||
)) " > customize-target-features.lisp
|
||||
|
|
Loading…
Reference in a new issue