doc: typos in test file.
[automake.git] / t / distcheck-override-dvi.sh
blob2cb9c5d300b3a0075bc9a9234b857fe9a30a46ae
1 #! /bin/sh
2 # Copyright (C) 2011-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 # Check that we can override the 'dvi' target run as part of distcheck,
18 # specifically to be 'html', so that TeX is not required.
19 # Related to automake bug#8289.
21 # TeX and texi2dvi should not be needed or invoked.
22 TEX=false TEXI2DVI=false
23 export TEX TEXI2DVI
25 required='makeinfo'
26 . test-init.sh
28 cat >> configure.ac << 'END'
29 AC_OUTPUT
30 END
32 cat > Makefile.am << 'END'
33 AM_DISTCHECK_DVI_TARGET = html
34 info_TEXINFOS = main.texi
35 END
37 # Protect with leading " # " to avoid spurious maintainer-check failures.
38 sed 's/^ *# *//' > main.texi << 'END'
39 # \input texinfo
40 # @setfilename main.info
41 # @settitle main
43 # @node Top
44 # Hello.
45 # @bye
46 END
48 $ACLOCAL
49 $AUTOMAKE -a
50 $AUTOCONF
52 ./configure
53 $MAKE
54 $MAKE distcheck