maint: Update HACKING
[automake.git] / t / aminit-trailing-dnl-comment-pr16841.sh
blobaa5c2e0a5c909a05d5d302cfe39d01d2ec5a86f9
1 #! /bin/sh
2 # Copyright (C) 2014-2017 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 a trailing 'dnl' m4 comment automake after the
18 # AM_INIT_AUTOMAKE invocation doesn't produce a syntactically
19 # invalid configure script. This used to be the case until
20 # automake 1.13, but we broke that in automake 1.14. See
21 # automake bug#16841.
23 am_create_testdir=empty
24 . test-init.sh
26 cat > configure.ac <<END
27 AC_INIT([test-pr16841], [1.0])
28 AM_INIT_AUTOMAKE([1.14 -Werror]) dnl Some comment
29 echo "OK OK OK"
30 AC_CONFIG_FILES([Makefile])
31 AC_OUTPUT
32 END
34 : > Makefile.am
36 $ACLOCAL
37 $AUTOCONF
38 $AUTOMAKE -a
40 ./configure >stdout || { cat stdout; exit 1; }
41 cat stdout
42 grep '^OK OK OK$' stdout