diff options
| author | Adam Vandenberg | 2010-08-21 11:49:25 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-21 12:00:39 -0700 |
| commit | 7146e145892d2431ac538d71b2ea504dccf658b6 (patch) | |
| tree | b3b908eee2b796bd69584f2a4250438cb12e0a96 | |
| parent | d0a7049535365c5ef28c9d762366be24c0b57886 (diff) | |
| download | homebrew-7146e145892d2431ac538d71b2ea504dccf658b6.tar.bz2 | |
tweak macvim
| -rw-r--r-- | Library/Formula/macvim.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/macvim.rb b/Library/Formula/macvim.rb index ba91ca1d6..6bf5f78ff 100644 --- a/Library/Formula/macvim.rb +++ b/Library/Formula/macvim.rb @@ -2,10 +2,11 @@ require 'formula' class Macvim <Formula head 'git://github.com/b4winckler/macvim.git' - homepage 'http://code.google.com/p/macvim' + homepage 'http://code.google.com/p/macvim/' def options - [["--no-icons", "Does not generate custom document icons."]] + # Occassional reports of this brew failing during the icon step + [["--no-icons", "Don't generate custom document icons."]] end def install @@ -38,9 +39,7 @@ class Macvim <Formula bin.install "src/MacVim/mvim" # Create MacVim vimdiff, view, ex equivalents - %w[mvimdiff mview mvimex].each do |f| - (bin + f).make_symlink("#{bin}/mvim") - end + %w[mvimdiff mview mvimex].each {|f| ln_s bin+'mvim', bin+f} end def caveats |
