"Fossies" - the Fresh Open Source Software Archive 
Member "automake-1.16.3/t/auxdir-pr19311.sh" (19 Nov 2020, 1309 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.
See also the latest
Fossies "Diffs" side-by-side code changes report for "auxdir-pr19311.sh":
1.16.2_vs_1.16.3.
1 #! /bin/sh
2 # Copyright (C) 2014-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 # Automake bug#19311: AC_PROG_CC called before AC_CONFIG_AUX_DIR can
18 # silently force wrong $ac_aux_dir definition.
19
20 am_create_testdir=empty
21 required=cc
22 . test-init.sh
23
24 ver=$($AUTOCONF --version | sed -n '1s/.* //p')
25 case $ver in
26 2.69[d-z]*) ;;
27 2.[7-9][0-9]*) ;;
28 [3-9].*) ;;
29 *) skip_ 'this test passes with autoconf-2.69d and newer'
30 esac
31
32 cat > configure.ac <<END
33 AC_INIT([$me], [1.0])
34 AC_PROG_CC
35 AC_CONFIG_AUX_DIR([build-aux])
36 AM_INIT_AUTOMAKE
37 AC_OUTPUT([Makefile])
38 END
39
40 : > Makefile.am
41
42 mkdir build-aux
43
44 $ACLOCAL
45 $AUTOMAKE -a
46 $AUTOCONF
47
48 test -f build-aux/compile
49 test -f build-aux/install-sh
50
51 ./configure
52
53 :