doc: typos in test file.
[automake.git] / t / txinfo-override-texinfo-tex.sh
blobe55e650b78b3890840511732bcd281979af3cf59
1 #! /bin/sh
2 # Copyright (C) 2003-2024 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 2, 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 <https://www.gnu.org/licenses/>.
17 # Make sure the user can override TEXINFO_TEX.
18 # Also make sure TEXINFO_TEX is not distributed.
19 # Report from Tom Tromey.
21 required='makeinfo tex texi2dvi'
22 . test-init.sh
24 cat > configure.ac << END
25 AC_INIT([$me], [1.0])
26 AC_CONFIG_AUX_DIR([aux1])
27 AM_INIT_AUTOMAKE
28 AC_CONFIG_FILES([Makefile])
29 AC_OUTPUT
30 END
32 cat > Makefile.am << 'END'
33 TEXINFO_TEX = ../tex/texinfo.tex
34 info_TEXINFOS = main.texi
35 sure_it_exists:
36 test -f $(srcdir)/$(TEXINFO_TEX)
37 sure_it_is_not_distributed: distdir
38 test ! -f $(distdir)/tex/texinfo.tex
39 check-local: sure_it_exists
40 END
42 cat > main.texi << 'END'
43 \input texinfo
44 @setfilename main.info
45 @settitle main
46 @node Top
47 Hello walls.
48 @bye
49 END
51 mkdir aux1
52 mkdir tex
53 cp "$am_pkgvdatadir/texinfo.tex" tex
55 $ACLOCAL
56 $AUTOMAKE --add-missing
57 $AUTOCONF
59 test ! -e texinfo.tex
60 test ! -e aux1/texinfo.tex
61 test -f tex/texinfo.tex
63 ./configure
65 $MAKE distcheck
66 $MAKE sure_it_is_not_distributed