* configure.in: Updated to 1.4d and released.
[automake.git] / tests / texinfo2.test
bloba7d9a3cd070530a5cdc6bf63d79ca2cefcfd0066
1 #! /bin/sh
3 # Test to ensure that a ".info~" file doesn't end up in the
4 # distribution. Bug report from Greg McGary.
6 . $srcdir/defs || exit 1
8 cat > Makefile.am << 'END'
9 info_TEXINFOS = textutils.texi
10 magic:
11 @echo $(DISTFILES)
12 END
14 : > texinfo.tex
15 echo '@setfilename textutils.info' > textutils.texi
16 : > textutils.info~
18 $AUTOMAKE || exit 1
20 test -z "`$MAKE -s -f Makefile.in magic | grep '~'`"