superenv: apply apr-1-config fix to 10.8+

Fixes Homebrew/homebrew#20417.
Closes Homebrew/homebrew#20474.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
This commit is contained in:
Clemens Gruber 2013-06-13 17:19:27 +02:00 committed by Jack Nagel
parent 776c08490f
commit fc649af17a

View File

@ -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