The real problem i'm having is these lines in configure.ac in the AC_OUPUT section: examples/Makefile examples/transition_state_search2/Makefile examples/transition_state_search2/carbocation_rearrangement_hydride_shift/Makefile examples/transition_state_search2/carbocation_rearrangement_methide_shift/Makefile examples/transition_state_search2/cycloaddition_Diels-Alder/Makefile examples/transition_state_search2/E2-reaction/Makefile examples/transition_state_search2/sigmatropic_rearrangement_Cope/Makefile examples/transition_state_search2/SN2-reaction/Makefile examples/transition_state_search2/tautomeric_shift_keto_enol/Makefile When i run autoconf it searches all these directories for Makefile.in and they don't exists, in fact, there is no Makefile.* in any of the examples directories. So whenever i update CVS i have to go in and remove those lines, configure.ac rarely changes but it's still odd. Best, Donald Tommi Hassinen wrote: > On Mon, 6 Mar 2006, Donald Ephraim Curtis wrote: > >> the examples/* are making autconf barf: >> >> acinclude.m4:38: warning: underquoted definition of AM_SANITY_CHECK >> run info '(automake)Extending aclocal' >> or see >> http://sources.redhat.com/automake/automake.html#Extending-aclocal >> /usr/share/aclocal/wxwin.m4:36: warning: underquoted definition of >> AM_OPTIONS_WXCONFIG > > Humm... the commands > > ./autogen.sh > ./configure > > work for me. Sometimes earlier I have seen that also this > > aclocal > libtoolize --copy --force > > followed by autogen.sh/configure might be needed. Configuration experts, > can you help? Is there something important missing from our autogen.sh? > > $ cat autogen.sh > #!/bin/sh > > OSTYPE=`uname -s` > > AMFLAGS="--add-missing" > if test "$OSTYPE" = "IRIX" -o "$OSTYPE" = "IRIX64"; then > AMFLAGS=$AMFLAGS" --include-deps"; > fi > > echo "Running aclocal" > aclocal > echo "Running automake" > automake $AMFLAGS > echo "Running autoconf" > autoconf > > echo "======================================" > echo "Now you are ready to run './configure'" > echo "======================================" > > Regards, > > Tommi >