Reword the copyright notices to match what's suggested in GPLv3.
[automake/plouj.git] / tests / txinfo22.test
blob29869fea5d9606c6bf1a994c587f93cee271a759
1 #! /bin/sh
2 # Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Make sure the user can override TEXINFO_TEX.
18 # Report from Tom Tromey.
19 # Also make sure Automake ignores in-line comments when using variables,
20 # but preserve them in the output.
22 required='makeinfo tex'
23 . ./defs || exit 1
25 set -e
27 cat > configure.in << 'END'
28 AC_INIT([txinfo22], [1.0])
29 AC_CONFIG_AUX_DIR([aux1])
30 AM_INIT_AUTOMAKE
31 AC_CONFIG_FILES([Makefile])
32 AC_OUTPUT
33 END
35 # Use a slash in the comment, because automake takes the dirname
36 # of TEXINFO_TEX to compute $(am__TEXINFO_TEX_DIR)...
37 cat > Makefile.am << 'END'
38 TEXINFO_TEX = $(srcdir)/tex/texinfo.tex # some comment w/ a slash
39 info_TEXINFOS = main.texi
40 sure_it_exists:
41 test -f $(TEXINFO_TEX)
42 test -d "$(am__TEXINFO_TEX_DIR)"
43 END
45 cat > main.texi << 'END'
46 \input texinfo
47 @setfilename main.info
48 @settitle main
49 @node Top
50 Hello walls.
51 @bye
52 END
54 mkdir aux1
55 mkdir tex
56 cp "$testsrcdir/../lib/texinfo.tex" tex
58 $ACLOCAL
59 $AUTOMAKE --add-missing
60 $AUTOCONF
62 test ! -f texinfo.tex
63 test ! -f aux1/texinfo.tex
64 test -f tex/texinfo.tex
66 ./configure
67 $MAKE sure_it_exists
68 $MAKE distcheck
69 grep 'TEXINFO_TEX = .* # some comment w/ a slash' Makefile