diff options
Diffstat (limited to 'Library/Formula/sbcl.rb')
| -rw-r--r-- | Library/Formula/sbcl.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/sbcl.rb b/Library/Formula/sbcl.rb index e38946009..59786e48f 100644 --- a/Library/Formula/sbcl.rb +++ b/Library/Formula/sbcl.rb @@ -46,9 +46,9 @@ class Sbcl < Formula def write_features features = [] - features << ":sb-thread" unless build.include? "without-threads" - features << ":sb-ldb" if build.include? "with-ldb" - features << ":sb-xref-for-internals" if build.include? "with-internal-xref" + features << ":sb-thread" if build.with? "threads" + features << ":sb-ldb" if build.with? "ldb" + features << ":sb-xref-for-internals" if build.with? "internal-xref" File.open("customize-target-features.lisp", "w") do |file| file.puts "(lambda (list)" |
