aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-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}",