"Fossies" - the Fresh Open Source Software Archive 
Member "automake-1.16.3/t/distcheck-override-dvi.sh" (19 Nov 2020, 1404 Bytes) of package /linux/misc/automake-1.16.3.tar.xz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Bash source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 #! /bin/sh
2 # Copyright (C) 2011-2020 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 2, 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 <https://www.gnu.org/licenses/>.
16
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.
20
21 # TeX and texi2dvi should not be needed or invoked.
22 TEX=false TEXI2DVI=false
23 export TEX TEXI2DVI
24
25 required='makeinfo'
26 . test-init.sh
27
28 cat >> configure.ac << 'END'
29 AC_OUTPUT
30 END
31
32 cat > Makefile.am << 'END'
33 AM_DISTCHECK_DVI_TARGET = html
34 info_TEXINFOS = main.texi
35 END
36
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
42 #
43 # @node Top
44 # Hello.
45 # @bye
46 END
47
48 $ACLOCAL
49 $AUTOMAKE -a
50 $AUTOCONF
51
52 ./configure
53 $MAKE
54 $MAKE distcheck
55
56 :