Enable traces; wipe out the old configure.in parser.
[platform/upstream/automake.git] / tests / pluseq8.test
1 #! /bin/sh
2
3 # Another `+=' test.  From Paul Berrevoets.
4
5 . $srcdir/defs || exit 1
6
7 cat > Makefile.am << 'END'
8 VAR = \
9     one \
10     two
11 VAR += three
12 END
13
14 $ACLOCAL || exit 1
15 $AUTOMAKE || exit 1
16
17 sed -n -e '/^VAR =.*\\$/ {
18    :loop
19     p
20     n
21     /\\$/ b loop
22     p
23     n
24    }' Makefile.in | grep three