0b994b8c294326d4d8def5978f69f7a7be78ac73
[platform/upstream/automake.git] / tests / extra5.test
1 #! /bin/sh
2
3 # Check to make sure EXTRA_DIST can contain a directory from $buildir.
4 # From Dean Povey.
5
6 . $srcdir/defs || exit 1
7
8 echo AC_OUTPUT >> configure.in
9
10 cat > Makefile.am << 'END'
11 EXTRA_DIST=foo
12
13 foo:
14         mkdir foo
15         touch foo/bar
16 END
17
18 set -e
19
20 $ACLOCAL
21 $AUTOMAKE
22 $AUTOCONF
23 mkdir build
24 cd build
25 ../configure
26 $MAKE distdir