* depcomp (ddashmd): Removed case.
[automake.git] / tests / gnits.test
blob131d2ace2e8ad220329b678ced3e2764ffdecd86
1 #! /bin/sh
3 # Test to ensure --gnits version checking is correct.
5 . $srcdir/defs || exit 1
7 cat > configure.in << 'END'
8 PACKAGE=nonesuch
9 VERSION=3.5.3.2
10 AC_ARG_PROGRAM
11 AC_PROG_MAKE_SET
12 AC_PROG_INSTALL
13 AC_OUTPUT(Makefile)
14 END
16 cat > Makefile.am << 'END'
17 pkgdata_DATA =
18 END
20 # Files required by Gnits.
21 : > INSTALL
22 : > NEWS
23 : > README
24 : > COPYING
25 : > AUTHORS
26 : > ChangeLog
27 : > THANKS
29 $AUTOMAKE --gnits && exit 1
30 exit 0