aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/geoip.rb2
-rw-r--r--Library/Homebrew/extend/ENV.rb6
2 files changed, 5 insertions, 3 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
diff --git a/Library/Homebrew/extend/ENV.rb b/Library/Homebrew/extend/ENV.rb
index b6240d8e3..b07e6d006 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