doxygen: fix with-llvm option

2dbb5afb didn't change the build.with? "libclang" to build.with? "llvm"

Closes #3824.

Signed-off-by: ilovezfs <ilovezfs@icloud.com>
This commit is contained in:
ilovezfs 2016-08-12 01:11:02 -07:00
parent 352f760254
commit abc87de2ac

View file

@ -30,7 +30,7 @@ class Doxygen < Formula
def install
args = std_cmake_args
args << "-Dbuild_wizard=ON" if build.with? "qt5"
args << "-Duse_libclang=ON -DLLVM_CONFIG=#{Formula["llvm"].opt_bin}/llvm-config" if build.with? "libclang"
args << "-Duse_libclang=ON -DLLVM_CONFIG=#{Formula["llvm"].opt_bin}/llvm-config" if build.with? "llvm"
mkdir "build" do
system "cmake", "..", *args