aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/git.rb')
-rw-r--r--Library/Formula/git.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/Library/Formula/git.rb b/Library/Formula/git.rb
index 2a86d3028..1b116b1e8 100644
--- a/Library/Formula/git.rb
+++ b/Library/Formula/git.rb
@@ -58,17 +58,6 @@ class Git < Formula
# Some people like the stuff in the contrib folder
(share+'git').install 'contrib'
- # These files are exact copies of the git binary, so like the contents
- # of libexec/git-core lets hard link them.
- # I am assuming this is an overisght by the git devs.
- git_md5 = (bin+'git').md5
- %w[git-receive-pack git-upload-archive].each do |fn|
- fn = bin + fn
- next unless git_md5 == fn.md5
- fn.unlink
- fn.make_link bin+'git'
- end
-
# We could build the manpages ourselves, but the build process depends
# on many other packages, and is somewhat crazy, this way is easier.
GitManuals.new.brew { man.install Dir['*'] }