From Nicolas Joly:
[automake.git] / tests / pluseq8.test
blobbd974bb6be8f8e534ffa59f79f240f81ae4e982e
1 #! /bin/sh
3 # Another `+=' test. From Paul Berrevoets.
5 . $srcdir/defs || exit 1
7 cat > Makefile.am << 'END'
8 VAR = \
9 one \
10 two
11 VAR += three
12 END
14 $AUTOMAKE || exit 1
16 sed -n -e '/^VAR =.*\\$/ {
17 :loop
20 /\\$/ b loop
23 }' Makefile.in | grep three