>>>>> "Ralf" == Ralf Corsepius <[EMAIL PROTECTED]> writes:
Ralf> Something very fishy seems to be going on with automake-cvs and
Ralf> autoconf-cvs (both updated yesterday):
Ralf> /opt/dev/share/automake/am/depend2.am: AMDEP does not appear in
Ralf> AM_CONDITIONAL
I tried your example but was unable to reproduce this problem.
Here is how I did it:
* Save the appended file as automake-srcdir/tests/amdep.test
* chmod +x tests/amdep.test
* cd automake-builddir
* make VERBOSE=t TESTS=amdep.test check
Can you somehow modify this test to reproduce the problem you are
seeing?
Thanks,
Tom
#! /bin/sh
. $srcdir/defs || exit 1
cat > configure.in << 'END'
AC_PREQ(2.50)
AC_INIT
AM_INIT_AUTOMAKE(hello, 0.0)
AC_CONFIG_SRCDIR([hello.c])
AC_INIT_AUTOMAKE(hello,0)
AC_PROG_CC
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
END
cat > Makefile.am << 'END'
bin_PROGRAMS = hello
END
: > hello.c
$ACLOCAL || exit 1
$AUTOMAKE -a