Skip to content
Snippets Groups Projects
Commit fc649af1 authored by Clemens Gruber's avatar Clemens Gruber Committed by Jack Nagel
Browse files

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


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

Signed-off-by: default avatarJack Nagel <jacknagel@gmail.com>
parent 776c0849
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment