diff options
author | Peter Collingbourne <peter@pcc.me.uk> | 2011-05-13 03:27:56 +0000 |
---|---|---|
committer | Peter Collingbourne <peter@pcc.me.uk> | 2011-05-13 03:27:56 +0000 |
commit | 5ac59df9fbccc256e1c8f1c729f4900db2e03972 (patch) | |
tree | 73f7bf4e2b2e62946139aa3a3cbb49a6352021af /llvm/autoconf | |
parent | 03e7e430c3bc8fd07e1c12657c865e13f26ba263 (diff) | |
download | bcm5719-llvm-5ac59df9fbccc256e1c8f1c729f4900db2e03972.tar.gz bcm5719-llvm-5ac59df9fbccc256e1c8f1c729f4900db2e03972.zip |
Re-add the autoconf rule for the docs/doxygen.cfg file.
For some reason this was not reverted when r103213 was.
At the same time, add an optional rule for clang's doxygen.cfg.
llvm-svn: 131279
Diffstat (limited to 'llvm/autoconf')
-rw-r--r-- | llvm/autoconf/configure.ac | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/autoconf/configure.ac b/llvm/autoconf/configure.ac index b55f56444fa..6b5efbeaeb6 100644 --- a/llvm/autoconf/configure.ac +++ b/llvm/autoconf/configure.ac @@ -1723,6 +1723,12 @@ AC_CONFIG_FILES([Makefile.config]) dnl Configure the RPM spec file for LLVM AC_CONFIG_FILES([llvm.spec]) +dnl Configure doxygen's configuration file +AC_CONFIG_FILES([docs/doxygen.cfg]) +if test -f ${srcdir}/tools/clang/README.txt; then + AC_CONFIG_FILES([tools/clang/docs/doxygen.cfg]) +fi + dnl Configure llvmc's Base plugin AC_CONFIG_FILES([tools/llvmc/src/Base.td]) |