[Cppunit-devel] Re: [patch] fix aclocal warning
Brought to you by:
blep
From: Baptiste L. <bl...@us...> - 2005-07-15 17:37:08
|
Baptiste Lepilleur wrote: > Running ./autogen.sh (or aclocal) with a recent CVS snapshot > produces a warning about underquoting. This patch fixes it. This patch does fix the warning, but it break the build: ./autogen.sh /usr/share/aclocal/smpeg.m4:13: warning: underquoted definition of AM_PATH_SMPEG run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal Putting files in AC_CONFIG_AUX_DIR, `config'. doc/Makefile.am:16: DOC does not appear in AM_CONDITIONAL => the error reported concerning doc/Makefile.am cause autogen.sh to abort and the 'configure' script is not generated. DOC is defined in config/bb_enable_doxygen.m4 but no longer seems visible in doc/Makefile.am... The excerpt from doc/Makefile.am: # DOC is defined if installer requests doc generation. # [...] if DOC Anyone know how to fix this ? The patch seems desirable for the long term (the automake link above clearly state so), but I'll have to roll it back if no solution is found. Thanks, Baptiste. --- Baptiste Lepilleur <bl...@us...> CppUnit maintainer OpenTest and CppUnit 2 developer. > > 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], |