Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
MacVim: apply ENV.clang on Lion too
Browse files Browse the repository at this point in the history
Closes #20604.
  • Loading branch information
adamv committed Jun 19, 2013
1 parent f9baf5a commit 2bd5132
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Library/Formula/macvim.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ def install
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
Expand Down

0 comments on commit 2bd5132

Please sign in to comment.