doc: typos in test file.
[automake.git] / t / subpkg2.sh
blobff0dc0092f2cc954ccc891d5d950694f6e45f188
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 # Try a DIST_SUBDIRS subpackage with no SUBDIRS.
18 # Report from Gary V. Vaughan.
20 . test-init.sh
22 mkdir m4
24 cat >m4/foo.m4 <<'EOF'
25 AC_DEFUN([FOO],[
26 AC_OUTPUT
28 EOF
30 cat >>configure.ac <<'END'
31 AC_CONFIG_MACRO_DIR([m4])
32 AC_CONFIG_SUBDIRS([sub])
33 AC_OUTPUT
34 END
36 cat >Makefile.am <<'EOF'
37 DIST_SUBDIRS = sub
38 dist-hook:
39 test -f $(distdir)/sub/script.in
40 EOF
42 mkdir sub
44 cat >sub/configure.ac <<'EOF'
45 AC_INIT([sub], [2.3])
46 AM_INIT_AUTOMAKE
47 AC_CONFIG_MACRO_DIR([../m4])
48 AC_CONFIG_FILES([Makefile])
49 AC_CONFIG_FILES([script])
50 FOO
51 EOF
53 : >sub/script.in
54 : >sub/Makefile.am
56 $ACLOCAL
57 $AUTOCONF
58 $AUTOMAKE
60 cd sub
61 $ACLOCAL
62 $FGREP 'm4_include([../m4/foo.m4])' aclocal.m4
63 $AUTOCONF
64 $AUTOMAKE -Wno-override
65 cd ..
67 ./configure
68 $MAKE distcheck