diff options
| author | Clemens Gruber | 2013-06-19 15:40:15 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-19 08:04:36 -0700 |
| commit | 0060dc39db5280e9d93c0f229fa2513a25bc1623 (patch) | |
| tree | 6caf9359f94f459f817274b2889e23e0a274e325 /Library/Formula | |
| parent | 49d04cb5b7fbbe8a88e9c4fabe288b7899e4e3e7 (diff) | |
| download | homebrew-0060dc39db5280e9d93c0f229fa2513a25bc1623.tar.bz2 | |
subversion: improve build time (use deparallelize only when necessary)
Closes #20602.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/subversion.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/subversion.rb b/Library/Formula/subversion.rb index 79a9badae..aec411a38 100644 --- a/Library/Formula/subversion.rb +++ b/Library/Formula/subversion.rb @@ -56,11 +56,11 @@ class Subversion < Formula end def install - # Java support doesn't build correctly in parallel: - # https://github.com/mxcl/homebrew/issues/20415 - ENV.deparallelize - if build.include? 'java' + # Java support doesn't build correctly in parallel: + # https://github.com/mxcl/homebrew/issues/20415 + ENV.deparallelize + unless build.universal? opoo "A non-Universal Java build was requested." puts "To use Java bindings with various Java IDEs, you might need a universal build:" |
