do not allow stamp-h in AC_OUTPUT
[automake.git] / tests / canon4.test
blob5ca51e7b5e19a8f228b812748d02f076448fd6ea
1 #! /bin/sh
3 # Test to make sure name canonicalization happens for libraries.
5 . $srcdir/defs || exit 1
7 cat >> configure.in << 'END'
8 AC_PROG_CC
9 AC_PROG_RANLIB
10 END
12 cat > Makefile.am << 'END'
13 noinst_LIBRARIES = libx-y.a
14 libx_y_a_SOURCES = xy.c
15 END
17 $AUTOMAKE || exit 1
19 grep '^libx-y.*=' Makefile.in && exit 1
20 exit 0