diff options
| author | Eric Himmelreich | 2010-01-22 16:38:31 -0500 |
|---|---|---|
| committer | Max Howell | 2010-01-23 10:30:33 +0000 |
| commit | 1d5a7638c7a8f95cc46e812b8d0c2b28fdf08e23 (patch) | |
| tree | f233967cc8b044b5d7e639d3fad98dbfcebff760 /Library/Formula | |
| parent | db059bed57b99641208fc89c9acc9f3d6b8da927 (diff) | |
| download | homebrew-1d5a7638c7a8f95cc46e812b8d0c2b28fdf08e23.tar.bz2 | |
Using configure no longer suggested for Git
Closes #473
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/git.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Library/Formula/git.rb b/Library/Formula/git.rb index 62d689178..7aa169132 100644 --- a/Library/Formula/git.rb +++ b/Library/Formula/git.rb @@ -17,8 +17,7 @@ class Git <Formula # If local::lib is used you get a 'Only one of PREFIX or INSTALL_BASE can be given' error ENV['PERL_MM_OPT']=''; - system "./configure --prefix=#{prefix}" - system "make install" + system "make prefix=#{prefix} install" # Install the git bash completion file (etc+'bash_completion.d').install 'contrib/completion/git-completion.bash' |
