aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/superenv.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/superenv.rb b/Library/Homebrew/superenv.rb
index 1fa43cf2a..0cf427b09 100644
--- a/Library/Homebrew/superenv.rb
+++ b/Library/Homebrew/superenv.rb
@@ -217,8 +217,8 @@ class << ENV
end
# Fix issue with sed barfing on unicode characters on Mountain Lion
s << 's' if MacOS.version >= :mountain_lion
- # Fix issue with 10.8 apr-1-config having broken paths
- s << 'a' if MacOS.version == :mountain_lion
+ # Fix issue with >= 10.8 apr-1-config having broken paths
+ s << 'a' if MacOS.version >= :mountain_lion
s
end