Reword the copyright notices to match what's suggested in GPLv3.
[platform/upstream/automake.git] / tests / txinfo22.test
1 #! /bin/sh
2 # Copyright (C) 2003, 2004, 2007  Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
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/>.
16
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.
21
22 required='makeinfo tex'
23 . ./defs || exit 1
24
25 set -e
26
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
34
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
44
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
53
54 mkdir aux1
55 mkdir tex
56 cp "$testsrcdir/../lib/texinfo.tex" tex
57
58 $ACLOCAL
59 $AUTOMAKE --add-missing
60 $AUTOCONF
61
62 test ! -f texinfo.tex
63 test ! -f aux1/texinfo.tex
64 test -f tex/texinfo.tex
65
66 ./configure
67 $MAKE sure_it_exists
68 $MAKE distcheck
69 grep 'TEXINFO_TEX = .* # some comment w/ a slash' Makefile