On Wed, Feb 13, 2002 at 06:54:07PM +0100, Alexandre Duret-Lutz wrote: > > Patrick> config.status: creating Makefile > Patrick> + fgrep am__include = # Makefile > Patrick> FAIL: make.test > > So, what does this Makefile contains? > > Could you run > grep am__include /usr/src/local/automake/tests/testSubDir/Makefile > ?
am__include = include which seems to be set in aclocal.m4: # aclocal.m4 generated automatically by aclocal 1.5e -*- Autoconf -*- ... # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. ... # We grep out `Entering directory' and `Leaving directory' # messages which can occur if `w' ends up in MAKEFLAGS. # In particular we don't look at `^make:' because GNU make might # be invoked under some other name (usually "gmake"), in which # case it prints its new name instead of `make'. if test "`$am_make -s -f confmf 2> /dev/null | fgrep -v 'ing directory'`" = "don e"; then am__include=include am__quote= _am_result=GNU fi So has this just become an autoconf problem? Cheers, Patrick