aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/sbcl.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2011-04-03 19:55:04 -0700
committerAdam Vandenberg2011-04-03 19:55:04 -0700
commit583ae94d8997c9618edfb2f18c44dd3d20120baf (patch)
treeb443619715eb98ca0ff324b791c8d5119d4daf65 /Library/Formula/sbcl.rb
parentce960472d35ce02d7d07418a1c6d094b76c576f9 (diff)
downloadhomebrew-583ae94d8997c9618edfb2f18c44dd3d20120baf.tar.bz2
sbcl: fix typo and use positive logic
Diffstat (limited to 'Library/Formula/sbcl.rb')
-rw-r--r--Library/Formula/sbcl.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/sbcl.rb b/Library/Formula/sbcl.rb
index 9d4d91b3e..d794458ee 100644
--- a/Library/Formula/sbcl.rb
+++ b/Library/Formula/sbcl.rb
@@ -52,10 +52,10 @@ class Sbcl < Formula
def install
write_features
- # Remove non-ASCIi values from environment as they cause build failure
+ # Remove non-ASCII values from environment as they cause build failures
# More information: http://bugs.gentoo.org/show_bug.cgi?id=174702
ENV.delete_if do |key, value|
- !value.bytes.all? do |c| c <= 128 end
+ value.bytes.any? do |c| 128 <= c end
end
build_directory = Dir.pwd