doc: typos in test file.
[automake.git] / t / auxdir-pr19311.sh
blobf0a9195e7b8562216bbb6ab628de33d4763f272b
1 #! /bin/sh
2 # Copyright (C) 2014-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 # Automake bug#19311: AC_PROG_CC called before AC_CONFIG_AUX_DIR can
18 # silently force wrong $ac_aux_dir definition.
20 am_create_testdir=empty
21 required=cc
22 . test-init.sh
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
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
40 : > Makefile.am
42 mkdir build-aux
44 $ACLOCAL
45 $AUTOMAKE -a
46 $AUTOCONF
48 test -f build-aux/compile
49 test -f build-aux/install-sh
51 ./configure