aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2011-05-14 20:49:55 -0500
committerAdam Vandenberg2011-05-15 16:41:14 -0700
commitfbcfba9804eab402cf6ba2d2657659ef5fee4f72 (patch)
tree3e50a62cb36fe5e2c09527c3b8bc5c26e3dac68f
parent6f2ad10757122054a9698cead209c86c057c5a64 (diff)
downloadhomebrew-fbcfba9804eab402cf6ba2d2657659ef5fee4f72.tar.bz2
splint: deparallelize before 'make'
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/splint.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Formula/splint.rb b/Library/Formula/splint.rb
index 8568918d0..759264604 100644
--- a/Library/Formula/splint.rb
+++ b/Library/Formula/splint.rb
@@ -11,11 +11,12 @@ class Splint < Formula
end
def install
+ ENV.j1 # build is not parallel-safe
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
- "--infodir=#{info}", "--mandir=#{man}"
+ "--infodir=#{info}",
+ "--mandir=#{man}"
system "make"
- ENV.j1 # Install fails on 8-core without this.
system "make install"
end
end