From 18ff8a67fb9a05c440af321baebc9c40d33a5522 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sun, 10 Feb 2013 15:26:07 -0600 Subject: Fix Regexp encoding under 1.9/2.0 --- Library/Formula/sbcl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library/Formula') diff --git a/Library/Formula/sbcl.rb b/Library/Formula/sbcl.rb index 4e80d97b1..52356ed0d 100644 --- a/Library/Formula/sbcl.rb +++ b/Library/Formula/sbcl.rb @@ -59,7 +59,7 @@ class Sbcl < Formula # 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 =~ /[\x80-\xff]/ + value =~ /[\x80-\xff]/n end SbclBootstrapBinaries.new.brew do -- cgit v1.2.3