| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | #! /bin/sh# Copyright (C) 2014-2017 Free Software Foundation, Inc.## This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program.  If not, see <http://www.gnu.org/licenses/>.# Check that a trailing 'dnl' m4 comment automake after the# AM_INIT_AUTOMAKE invocation doesn't produce a syntactically# invalid configure script.  This used to be the case until# automake 1.13, but we broke that in automake 1.14. See# automake bug#16841.am_create_testdir=empty. test-init.shcat > configure.ac <<ENDAC_INIT([test-pr16841], [1.0])AM_INIT_AUTOMAKE([1.14 -Werror]) dnl Some commentecho "OK OK OK"AC_CONFIG_FILES([Makefile])AC_OUTPUTEND: > Makefile.am$ACLOCAL$AUTOCONF$AUTOMAKE -a./configure >stdout || { cat stdout; exit 1; }cat stdoutgrep '^OK OK OK$' stdout:
 |