diff options
| author | Dave Lee | 2011-03-26 13:44:49 -0600 |
|---|---|---|
| committer | Adam Vandenberg | 2011-03-26 12:53:07 -0700 |
| commit | 4cf1c7551df06c8f009fcbe570e5e02035cae213 (patch) | |
| tree | 3a36cdec06e234f19cda356a4aa9ae0f944c9558 /Library/Formula | |
| parent | 225ca255291dc691fc8f5fdcec161020857a1a92 (diff) | |
| download | homebrew-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.rb | 9 |
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}", |
