| #! /bin/sh |
| |
| # Test to make sure depcomp is installed and found properly |
| # when required for multiple directories |
| |
| . $srcdir/defs || exit 1 |
| |
| cat > configure.in << 'END' |
| AC_INIT |
| AM_INIT_AUTOMAKE(nonesuch, nonesuch) |
| AC_PROG_CC |
| AC_OUTPUT(subdir/Makefile subdir2/Makefile) |
| END |
| |
| rm -f depcomp |
| mkdir subdir |
| mkdir subdir2 |
| |
| cat > subdir/Makefile.am << 'END' |
| noinst_PROGRAMS = foo |
| foo_SOURCES = foo.c |
| END |
| |
| cp subdir/Makefile.am subdir2/Makefile.am |
| |
| : > subdir/foo.c |
| : > subdir2/foo.c |
| |
| $ACLOCAL || exit 1 |
| $AUTOMAKE --add-missing || exit 1 |
| |
| # There used to be a bug where this was created in the first subdir with C |
| # sources in it instead of in $top_srcdir or $ac_auxdir |
| test -f depcomp || exit 1 |