Tag
Hash :
479bae5a
Author :
Date :
2002-04-19T10:21:34
* automake.in (initialize_per_input): Clear %require_file_found. (%require_file_found): Group the declaration with the other variables initialized by initialize_per_input. * tests/required.test: New file. * tests/Makefile.am (TESTS): Add it. Reported by Marius Vollmer.
#! /bin/sh
# Make sure Automake will install several copies of required files if needed.
# Reported by Marius Vollmer.
. $srcdir/defs || exit 1
set -e
cat >> configure.in <<EOF
AC_CONFIG_FILES([one/Makefile two/Makefile])
AC_OUTPUT
EOF
mkdir one
mkdir two
echo 'SUBDIRS = one two' > Makefile.am
echo 'info_TEXINFOS = mumble.texi' > one/Makefile.am
cat >one/mumble.texi <<'END'
@setfilename mumble.info
@include version.texi
END
cp one/Makefile.am one/mumble.texi two
$ACLOCAL
$AUTOMAKE --add-missing --copy
test -f one/mdate-sh
test -f one/texinfo.tex
test -f two/mdate-sh
test -f two/texinfo.tex