diff options
| author | Misty De Meo | 2012-04-20 17:09:59 -0500 |
|---|---|---|
| committer | Misty De Meo | 2012-04-23 09:20:59 -0500 |
| commit | 3dd77433e36737162e74d415020ec76aed869f8b (patch) | |
| tree | 11593521c2f89c3b2c2ba7f4f6f114213c4a3c38 | |
| parent | 768e5a31c54fbd59450b3135a10324f63eb4e2a2 (diff) | |
| download | homebrew-3dd77433e36737162e74d415020ec76aed869f8b.tar.bz2 | |
emacs: don't build parallel for --HEAD
Fixes #11787, among others
| -rw-r--r-- | Library/Formula/emacs.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/emacs.rb b/Library/Formula/emacs.rb index aad925bf4..742d690a2 100644 --- a/Library/Formula/emacs.rb +++ b/Library/Formula/emacs.rb @@ -55,6 +55,10 @@ class Emacs < Formula end def install + # HEAD builds are currently blowing up when built in parallel + # as of April 20 2012 + ENV.j1 if ARGV.build_head? + args = ["--prefix=#{prefix}", "--without-dbus", "--enable-locallisppath=#{HOMEBREW_PREFIX}/share/emacs/site-lisp", |
