diff options
| author | Max Howell | 2010-01-23 10:36:16 +0000 |
|---|---|---|
| committer | Max Howell | 2010-01-23 10:36:16 +0000 |
| commit | 70101b34d415edeaba38a54737bb6b6cfa488afe (patch) | |
| tree | e506643cb029337a798a6950f803e739addec368 /Library/Formula | |
| parent | 36ebfd206f7f1efedeb2bdce12f35921b67aed90 (diff) | |
| download | homebrew-70101b34d415edeaba38a54737bb6b6cfa488afe.tar.bz2 | |
Don't break for paths with spaces
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/git.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/git.rb b/Library/Formula/git.rb index 7aa169132..08481c9c7 100644 --- a/Library/Formula/git.rb +++ b/Library/Formula/git.rb @@ -17,7 +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 "make prefix=#{prefix} install" + system "make", "prefix=#{prefix}", "install" # Install the git bash completion file (etc+'bash_completion.d').install 'contrib/completion/git-completion.bash' |
