diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/star.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Formula/star.rb b/Library/Formula/star.rb index 37ab12350..19dbe52a9 100644 --- a/Library/Formula/star.rb +++ b/Library/Formula/star.rb @@ -10,5 +10,10 @@ class Star < Formula def install system "smake", "GMAKE_NOWARN=true", "INS_BASE=#{prefix}", "MANDIR=share/man" system "smake", "GMAKE_NOWARN=true", "INS_BASE=#{prefix}", "MANDIR=share/man", "install" + + # Remove symlinks that override built-in utilities + Dir.chdir bin do + Pathname.glob(%w[gnutar tar]) {|p| p.unlink} + end end end |
