* depcomp (ddashmd): Removed case.
[automake.git] / tests / mdate3.test
blob8440c5aef9cf84c570301916d3cc40902099de7f
1 #! /bin/sh
3 # Test to make sure mdate-sh run correctly.
5 . $srcdir/defs || exit 1
7 cat >> configure.in << 'END'
8 AC_CONFIG_AUX_DIR(foo)
9 END
11 cat > Makefile.am << 'END'
12 info_TEXINFOS = textutils.texi
13 END
15 cat > textutils.texi << 'END'
16 @include version.texi
17 @setfilename textutils.info
18 END
20 mkdir foo
22 # Required when using Texinfo.
23 : > foo/texinfo.tex
24 : > foo/mdate-sh
25 mv install-sh foo
26 mv missing foo
27 mv mkinstalldirs foo
28 mv depcomp foo
30 $AUTOMAKE || exit 1
32 grep '[^/]mdate-sh' Makefile.in && exit 1
33 exit 0