diff options
| author | Adam Vandenberg | 2013-06-19 12:17:45 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-19 12:17:45 -0700 |
| commit | 2bd51323304827e45a0018cf79fa2f2565dd8e0d (patch) | |
| tree | e3fd48a98c91c2c11316633de32ad9665d2e6145 /Library/Formula/macvim.rb | |
| parent | f9baf5af2f6c9010c315a6d30af72d0deba91d4d (diff) | |
| download | homebrew-2bd51323304827e45a0018cf79fa2f2565dd8e0d.tar.bz2 | |
MacVim: apply ENV.clang on Lion too
Closes #20604.
Diffstat (limited to 'Library/Formula/macvim.rb')
| -rw-r--r-- | Library/Formula/macvim.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/macvim.rb b/Library/Formula/macvim.rb index 3d1c46815..dd8eb0f14 100644 --- a/Library/Formula/macvim.rb +++ b/Library/Formula/macvim.rb @@ -25,9 +25,9 @@ class Macvim < Formula arch = MacOS.prefer_64_bit? ? 'x86_64' : 'i386' ENV['ARCHFLAGS'] = "-arch #{arch}" - # If building for 10.8, make sure that CC is set to "clang". + # If building for 10.7 or up, make sure that CC is set to "clang". # Reference: https://github.com/b4winckler/macvim/wiki/building - ENV.clang if MacOS.version >= :mountain_lion + ENV.clang if MacOS.version >= :lion args = %W[ --with-features=huge |
