[Cppunit-devel] [patch] fix aclocal warning
Brought to you by:
blep
From: Brad H. <br...@fr...> - 2005-06-13 08:55:51
|
Running ./autogen.sh (or aclocal) with a recent CVS snapshot produces a warning about underquoting. This patch fixes it. Brad diff -u -4 -p -r1.2 bb_enable_doxygen.m4 --- config/bb_enable_doxygen.m4 11 Mar 2003 20:34:11 -0000 1.2 +++ config/bb_enable_doxygen.m4 13 Jun 2005 08:53:57 -0000 @@ -1,5 +1,5 @@ -AC_DEFUN(BB_ENABLE_DOXYGEN, +AC_DEFUN([BB_ENABLE_DOXYGEN], [ AC_ARG_ENABLE(doxygen, [ --enable-doxygen enable documentation generation with doxygen (auto)]) AC_ARG_ENABLE(dot, [ --enable-dot use 'dot' to generate graphs in doxygen (auto)]) AC_ARG_ENABLE(html-docs, [ --enable-html-docs enable HTML generation with doxygen (yes)], [], [ enable_html_docs=yes]) |