aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorStefan Schmidt2012-09-07 17:48:42 +0200
committerAdam Vandenberg2012-09-07 14:18:00 -0700
commitdc56f757dfeed86db5ad036c5b757cba920a106d (patch)
tree15bf6cf68f2e31d16710eb427fb1b859fde033bc /Library/Formula
parent7941972769c639ddafea57966578b894cb72fb4b (diff)
downloadhomebrew-dc56f757dfeed86db5ad036c5b757cba920a106d.tar.bz2
html-xml-utils: added fails_with :clang for build 421
Also serialize the install. Closes #14790. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/html-xml-utils.rb15
1 files changed, 13 insertions, 2 deletions
diff --git a/Library/Formula/html-xml-utils.rb b/Library/Formula/html-xml-utils.rb
index 175c07b50..57e070fc2 100644
--- a/Library/Formula/html-xml-utils.rb
+++ b/Library/Formula/html-xml-utils.rb
@@ -1,13 +1,24 @@
require 'formula'
class HtmlXmlUtils < Formula
- url 'http://www.w3.org/Tools/HTML-XML-utils/html-xml-utils-5.5.tar.gz'
homepage 'http://www.w3.org/Tools/HTML-XML-utils/'
+ url 'http://www.w3.org/Tools/HTML-XML-utils/html-xml-utils-5.5.tar.gz'
sha1 'ec1e6d52825a6aa9e9aff0a34679621de5e419ba'
+ fails_with :clang do
+ build 421
+ cause <<-EOS.undent
+ Undefined symbols for architecture x86_64:
+ "_min", referenced from:
+ _write_index_item in hxindex.o
+ EOS
+ end
+
def install
- system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make"
+ ENV.j1 # install is not thread-safe
system "make install"
end
end