aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDave Lee2011-03-26 13:44:49 -0600
committerAdam Vandenberg2011-03-26 12:53:07 -0700
commit4cf1c7551df06c8f009fcbe570e5e02035cae213 (patch)
tree3a36cdec06e234f19cda356a4aa9ae0f944c9558 /Library/Formula
parent225ca255291dc691fc8f5fdcec161020857a1a92 (diff)
downloadhomebrew-4cf1c7551df06c8f009fcbe570e5e02035cae213.tar.bz2
ctags: fails_with_llvm
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/ctags.rb9
1 files changed, 7 insertions, 2 deletions
diff --git a/Library/Formula/ctags.rb b/Library/Formula/ctags.rb
index f8b66f5e2..93f07c539 100644
--- a/Library/Formula/ctags.rb
+++ b/Library/Formula/ctags.rb
@@ -7,9 +7,14 @@ class Ctags < Formula
head 'https://ctags.svn.sourceforge.net/svnroot/ctags/trunk'
+ # true for both 5.8 and head
+ fails_with_llvm "Resulting executable generates erroneous tag files", :build => 2335
+
def install
- system "autoheader" if ARGV.build_head?
- system "autoconf" if ARGV.build_head?
+ if ARGV.build_head?
+ system "autoheader"
+ system "autoconf"
+ end
system "./configure", "--prefix=#{prefix}",
"--enable-macro-patterns",
"--mandir=#{man}",