| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 | #! /bin/sh# Copyright (C) 2011-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 inclusion of '.am' fragments by automake does not suffer# of the "deleted header problem".  Basic checks are done here.. test-init.shecho AC_OUTPUT >> configure.ac$ACLOCAL$AUTOCONFcat > Makefile.am <<'END'include foo.aminclude $(srcdir)/bar.aminclude $(top_srcdir)/baz.amENDecho '# this is foo' > foo.amecho '# this is bar' > bar.amecho '# this is baz' > baz.am$AUTOMAKE# Sanity checks.$FGREP 'this is foo' Makefile.in$FGREP 'this is bar' Makefile.in$FGREP 'this is baz' Makefile.in./configure$MAKE # Should be no-op.$sleepsed '/^include foo\.am$/d' Makefile.am > tmv -f t Makefile.amrm -f foo.am$MAKE Makefile# Sanity checks.$FGREP 'this is foo' Makefile.in Makefile && exit 1$FGREP 'this is bar' Makefile.in$FGREP 'this is bar' Makefile$FGREP 'this is baz' Makefile.in$FGREP 'this is baz' Makefile$sleepecho '# empty empty' > Makefile.amrm -f bar.am baz.am$MAKE Makefile# Sanity checks.$FGREP 'empty empty' Makefile.in$FGREP 'empty empty' Makefilegrep 'this is ba[rz]' Makefile Makefile.in && exit 1:
 |