diff options
| author | Clemens Gruber | 2013-06-13 17:19:27 +0200 |
|---|---|---|
| committer | Jack Nagel | 2013-06-13 11:33:16 -0500 |
| commit | fc649af17afe2aa54435710c7e82f6b5363c8d09 (patch) | |
| tree | bf14e0ec40092c28cdc0ccb66f034adadd1d30b0 /Library | |
| parent | 776c08490fdc6451e8c53e33cd22756d4f0477ed (diff) | |
| download | brew-fc649af17afe2aa54435710c7e82f6b5363c8d09.tar.bz2 | |
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>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/superenv.rb | 4 |
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 |
