diff options
| author | Mike McQuaid | 2012-08-02 16:52:33 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2012-08-02 20:26:01 +0100 | 
| commit | 00ba4dfd1ee1db446f1fdf9ed0b95efa61b7c3d2 (patch) | |
| tree | b6ca2ecd1b22f66f205d444af0db3711e316b7cb /Library/Formula/geoip.rb | |
| parent | 5f87c0bc16807e57bccaeab0203e59a01c889cc2 (diff) | |
| download | homebrew-00ba4dfd1ee1db446f1fdf9ed0b95efa61b7c3d2.tar.bz2 | |
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 #11728, fix #12890, fix #13653, fix #13734, fix #13787, fix #13818.
Diffstat (limited to 'Library/Formula/geoip.rb')
| -rw-r--r-- | Library/Formula/geoip.rb | 2 | 
1 files changed, 0 insertions, 2 deletions
diff --git a/Library/Formula/geoip.rb b/Library/Formula/geoip.rb index 334799bf1..b289bcc00 100644 --- a/Library/Formula/geoip.rb +++ b/Library/Formula/geoip.rb @@ -14,8 +14,6 @@ class Geoip < Formula    end    def install -    # Fix issue with sed barfing on unicode characters on Mountain Lion. -    ENV.delete('LANG')      ENV.universal_binary if ARGV.build_universal?      # Fixes a build error on Lion when configure does a variant of autoreconf  | 
