From e765d732ade41140de43ca8db8cac47450d69ef1 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Sun, 17 Jun 2012 20:22:11 -0700 Subject: [PATCH] w3m: build isn't parallel safe --- Formula/w3m.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Formula/w3m.rb b/Formula/w3m.rb index 23a94ad5f2..c1a0b502c9 100644 --- a/Formula/w3m.rb +++ b/Formula/w3m.rb @@ -3,7 +3,7 @@ require 'formula' class W3m < Formula homepage 'http://w3m.sourceforge.net/' url 'http://downloads.sourceforge.net/project/w3m/w3m/w3m-0.5.3/w3m-0.5.3.tar.gz' - md5 '1b845a983a50b8dec0169ac48479eacc' + sha1 '444b6c8cf7094ee95f8e9de96b37f814b9d83237' depends_on 'bdw-gc' @@ -19,6 +19,9 @@ class W3m < Formula def install system "./configure", "--prefix=#{prefix}", "--disable-image" + # Race condition in build reported in: + # https://github.com/mxcl/homebrew/issues/12854 + ENV.j1 # system "make install" end end