* configure.in: Bump version to 1.5b.
[automake.git] / tests / extra5.test
blobaa8468108951c7e19b41fa5db752f71555c99fd1
1 #! /bin/sh
3 # Check to make sure EXTRA_DIST can contain a directory from $buildir.
4 # From Dean Povey.
6 . $srcdir/defs || exit 1
8 # Fail gracefully if no autoconf.
9 $needs_autoconf
11 echo AC_OUTPUT >> configure.in
13 cat > Makefile.am << 'END'
14 EXTRA_DIST=foo
16 foo:
17 mkdir foo
18 touch foo/bar
19 END
21 set -e
23 $ACLOCAL
24 $AUTOMAKE
25 $AUTOCONF
26 mkdir build
27 cd build
28 ../configure
29 make distdir