diff options
| author | Adam Vandenberg | 2013-06-17 21:27:24 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-17 21:27:24 -0700 |
| commit | 28670c622349fd207ae665e865ea97132613db01 (patch) | |
| tree | 89bf63e6a9fa04bdebd4454caf23b4bfdd07ba61 /Library/Formula/subversion.rb | |
| parent | 6211a478900f33d714d81589cd35f30ea0d27123 (diff) | |
| download | homebrew-28670c622349fd207ae665e865ea97132613db01.tar.bz2 | |
subversion: serialize build
Building with Java support does not work in parallel.
Closes #20415.
Diffstat (limited to 'Library/Formula/subversion.rb')
| -rw-r--r-- | Library/Formula/subversion.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/subversion.rb b/Library/Formula/subversion.rb index 4b8d4fa8f..79a9badae 100644 --- a/Library/Formula/subversion.rb +++ b/Library/Formula/subversion.rb @@ -56,6 +56,10 @@ 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' unless build.universal? opoo "A non-Universal Java build was requested." |
