#!/bin/sh # Copyright (C) 1996, 1997, 2000, 2001, 2002 Free Software Foundation, Inc. # # This file is part of GNU Automake. # # GNU Automake 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. # # GNU Automake 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 autoconf; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, # Boston, MA 02111-1307, USA. . ./defs || exit 1 cat > Makefile.am << 'END' info_TEXINFOS = textutils.texi END cat > textutils.texi << 'END' @include version.texi @setfilename textutils.info END # Required when using Texinfo. : > mdate-sh : > texinfo.tex set -e $ACLOCAL || exit 1 $AUTOMAKE # Test for bug reported by Jim Meyering: # When I ran automake-0.29 on textutils, # I noticed that doc/Makefile.in had # textutils.info: textutils.texi # instead of # textutils.info: textutils.texi version.texi # (Today this should be `textutils.info: version.texi') grep '^textutils\.info:.*version\.texi$' Makefile.in # Test for bug reported by Lars Hecking: # When running the first version of configure.ac aware automake, # @CONFIGURE_AC@ was not properly substitued. $EGREP '^stamp-vti:.*textutils\.texi( .*)?$' Makefile.in $EGREP '^stamp-vti:.*\$\(top_srcdir\)/configure( .*)?$' Makefile.in # Check that the path to mdate-sh is correct. Over escaping of `$' # etc. once led to `\$\(srcdir\)/mdate-sh'. # Filter out '$(srcdir)/mdate-sh'; output occurrences of `SOMETHING/mdate-sh' sed -n 's,\$(srcdir)/mdate-sh,,g;s,.* \([^ ]*/mdate-sh\) .*,\1,gp' Makefile.in| # There must remain nothing. grep . && exit 1 exit 0