From c632d733bc717f8129db3a46c5bfafef1d8aab46 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Thu, 2 Aug 2012 16:52:33 +0100 Subject: [PATCH] Fix Mountain Lion sed by setting LANG. It's also necessary to delete LC_ALL or it overrides the new LANG. LC_COLLATE is the problem variable but is affected by LANG and LC_ALL so just use them instead. Extends the fix made to geoip in dc955c. Fix Homebrew/homebrew#11728, fix Homebrew/homebrew#12890, fix Homebrew/homebrew#13653, fix Homebrew/homebrew#13734, fix Homebrew/homebrew#13787, fix Homebrew/homebrew#13818. --- Library/Homebrew/extend/ENV.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/extend/ENV.rb b/Library/Homebrew/extend/ENV.rb index b6240d8e37..b07e6d006d 100644 --- a/Library/Homebrew/extend/ENV.rb +++ b/Library/Homebrew/extend/ENV.rb @@ -9,8 +9,12 @@ module HomebrewEnvExtension delete('CLICOLOR_FORCE') # autotools doesn't like this remove_cc_etc - # Mountain Lion no longer ships a few .pcs; make sure we pick up our versions if MacOS.mountain_lion? + # Fix issue with sed barfing on unicode characters on Mountain Lion. + delete('LC_ALL') + self['LANG']="C" + + # Mountain Lion no longer ships a few .pcs; make sure we pick up our versions prepend 'PKG_CONFIG_PATH', HOMEBREW_REPOSITORY/'Library/Homebrew/pkgconfig', ':' end