splint: deparallelize before 'make'

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Jack Nagel 2011-05-14 20:49:55 -05:00 committed by Adam Vandenberg
parent 2f99f0adeb
commit 87e2cf821b

View file

@ -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