tests: work around strangeness in MSYS
[automake.git] / tests / txinfo2.test
blob39c404c24f85d5ce446e742cc9584712927191c8
1 #! /bin/sh
2 # Copyright (C) 1996, 1997, 2001, 2002, 2003, 2011 Free Software
3 # Foundation, Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
8 # any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 # Test to ensure that a ".info~" file doesn't end up in the
19 # distribution. Bug report from Greg McGary.
21 . ./defs || Exit 1
23 cat >> configure.in << 'END'
24 AC_OUTPUT
25 END
27 cat > Makefile.am << 'END'
28 info_TEXINFOS = textutils.texi
29 .PHONY: test
30 test:
31 @echo DISTFILES = $(DISTFILES)
32 case '$(DISTFILES)' in *'~'*) exit 1;; *) exit 0;; esac
33 END
35 : > texinfo.tex
36 echo '@setfilename textutils.info' > textutils.texi
37 : > textutils.info~
39 $ACLOCAL
40 $AUTOCONF
41 $AUTOMAKE
43 ./configure
44 $MAKE test