From 3f900ae90acbf80c99717fd7ea23c112f0840e3a Mon Sep 17 00:00:00 2001 From: "Tim D. Smith" Date: Sat, 20 Sep 2014 20:30:38 -0700 Subject: [PATCH] libpst: deparallelize install --- Formula/libpst.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Formula/libpst.rb b/Formula/libpst.rb index b7e95b9d26..890f0c3033 100644 --- a/Formula/libpst.rb +++ b/Formula/libpst.rb @@ -35,6 +35,8 @@ class Libpst < Formula args << '--disable-python' end system "./configure", *args - system "make install" + system "make" + ENV.deparallelize + system "make", "install" end end