* configure.in: Bump version to 1.5b.
[automake.git] / tests / subst.test
blobe9b746bcf88cbc9a7451fcc80206e33f135285d9
1 #! /bin/sh
3 # Test that AC_SUBST($1) does something sensible. From Ulrich
4 # Drepper.
6 . $srcdir/defs || exit 1
8 cat >> configure.in << 'END'
9 AC_SUBST($1)
10 AC_SUBST([$]$1) dnl this is the actual invocation that was used
11 END
13 : > Makefile.am
15 $ACLOCAL || exit 1
16 $AUTOMAKE || exit 1
17 grep '^\$1' Makefile.in && exit 1
18 exit 0