aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/syck.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Formula/syck.rb b/Library/Formula/syck.rb
index d49d9e71c..16acfd8fb 100644
--- a/Library/Formula/syck.rb
+++ b/Library/Formula/syck.rb
@@ -8,7 +8,9 @@ class Syck < Formula
fails_with_llvm
def install
- system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ ENV.deparallelize # Not parallel safe.
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end