diff options
| author | Clemens Gruber | 2013-06-13 17:19:27 +0200 |
|---|---|---|
| committer | Jack Nagel | 2013-06-13 11:33:16 -0500 |
| commit | 3baaa6b5c8646aef3f96eeda03d973863ec9ec2c (patch) | |
| tree | b70cd6d968d45b546cd9888f2109a10ef59e0f4a /Library | |
| parent | 2faff618b08cbe679aa32af00f7e41a2c9bf6dcc (diff) | |
| download | homebrew-3baaa6b5c8646aef3f96eeda03d973863ec9ec2c.tar.bz2 | |
superenv: apply apr-1-config fix to 10.8+
Fixes #20417.
Closes #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 |
