From 4ead7443d7cffc17fbca5d0040a94ad573c4728b Mon Sep 17 00:00:00 2001 From: ilovezfs Date: Sat, 27 Feb 2016 00:05:52 -0800 Subject: [PATCH] daemon: deparallelize Deparallelize the build to fix intermittent build failures such as libslack/locker.h:29:10: fatal error: 'slack/hdr.h' file not found libslack/prog.h:29:10: fatal error: 'slack/hdr.h' file not found daemon.c:656:10: fatal error: 'slack/std.h' file not found Closes Homebrew/homebrew#49588. Signed-off-by: Dominyk Tiller --- Formula/daemon.rb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Formula/daemon.rb b/Formula/daemon.rb index 6c56481d74..53a986e73f 100644 --- a/Formula/daemon.rb +++ b/Formula/daemon.rb @@ -13,6 +13,9 @@ class Daemon < Formula end def install + # Parallel build failure reported to raf@raf.org 27th Feb 2016 + ENV.deparallelize + system "./config" system "make" system "make", "PREFIX=#{prefix}", "install"