diff options
| author | Adam Vandenberg | 2011-06-03 21:38:35 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2011-06-03 21:38:35 -0700 | 
| commit | e48307faf60114ea90d2e4f9e6bfcb1a60475c92 (patch) | |
| tree | 90124f3697b163f66a625d909b6d4a219daef0dc /Library/Formula/git.rb | |
| parent | 39d6ae733e37c7bb1c6be84525bc7d4690f3cfb8 (diff) | |
| download | homebrew-e48307faf60114ea90d2e4f9e6bfcb1a60475c92.tar.bz2 | |
git: reword some comments
Diffstat (limited to 'Library/Formula/git.rb')
| -rw-r--r-- | Library/Formula/git.rb | 16 | 
1 files changed, 8 insertions, 8 deletions
diff --git a/Library/Formula/git.rb b/Library/Formula/git.rb index 1617cece0..118061e9a 100644 --- a/Library/Formula/git.rb +++ b/Library/Formula/git.rb @@ -16,12 +16,12 @@ class Git < Formula    homepage 'http://git-scm.com'    def install -    # if these things are installed, tell git build system to not use them +    # If these things are installed, tell Git build system to not use them      ENV['NO_FINK']='1'      ENV['NO_DARWIN_PORTS']='1'      # If local::lib is used you get a 'Only one of PREFIX or INSTALL_BASE can be given' error      ENV['PERL_MM_OPT']='' -    # build verbosely so we can debug better +    # Build verbosely.      ENV['V']='1'      inreplace "Makefile" do |s| @@ -30,7 +30,7 @@ class Git < Formula      system "make", "prefix=#{prefix}", "install" -    # Install the git bash completion file. +    # Install the Git bash completion file.      # Put it into the Cellar so that it gets upgraded along with git upgrades.      (prefix+'etc/bash_completion.d').install 'contrib/completion/git-completion.bash' @@ -40,9 +40,9 @@ class Git < Formula      # Install contrib files to share/contrib      (share).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 +    # 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 @@ -51,8 +51,8 @@ class Git < Formula        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 +    # 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['*'] }      GitHtmldocs.new.brew { (share+'doc/git-doc').install Dir['*'] }    end  | 
