Tag
Hash :
225eebfa
Author :
Date :
2001-01-26T15:07:45
* automake.in (handle_texinfo): Don't use $conf_pat, just $conf_dir to transform MDDIR since now &transform handles the escaping of RE special characters by itself.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
#!/bin/sh
. $srcdir/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
$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
grep '^textutils\.info: textutils\.texi .*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 '^\$\(srcdir\)/stamp-vti:.*textutils\.texi( .*)?$' Makefile.in
egrep '^\$\(srcdir\)/stamp-vti:.*\$\(top_srcdir\)/configure\.in( .*)?$' 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