Tag
Hash :
6765f660
Author :
Date :
2001-10-28T14:00:28
* tests/acoutnoq.test, tests/acoutput.test, tests/acoutqnl.test, * tests/acouttbs.test, tests/auxdir.test, tests/colon.test, * tests/colon2.test, tests/colon3.test, tests/colon4.test, * tests/colon5.test, tests/colon6.test, tests/colon7.test, * tests/conf2.test, tests/config.test, tests/depcomp.test, * tests/depcomp2.test, tests/discover.test, tests/fpinst2.test, * tests/fpinstall.test, tests/ldadd.test, tests/libobj7.test, * tests/libobj8.test, tests/output.test, tests/output2.test, * tests/output3.test, tests/output4.test, tests/output5.test, * tests/pr2.test, tests/remake.test, tests/remake2.test, * tests/remake3.test, tests/scripts.test, tests/stamph.test, * tests/subdir.test, tests/subdir2.test, tests/subdir4.test, * tests/tagsub.test, tests/texinfo8.test: Remove PACKAGE and VERSION assignments.
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
#! /bin/sh
# Test to make sure texinfo.tex is correctly installed and disted by
# -a when we're using AC_CONFIG_AUX_DIR. Bug report by by Per
# Cederqvist.
. $srcdir/defs || exit 1
cat > configure.in << 'END'
AC_INIT
AM_INIT_AUTOMAKE(nonesuch, nonesuch)
AC_OUTPUT(Makefile sub/Makefile)
AC_CONFIG_AUX_DIR(sub)
END
cat > Makefile.am << 'END'
info_TEXINFOS = textutils.texi
END
echo '@setfilename textutils.info' > textutils.texi
test -d sub || mkdir sub
cat > sub/Makefile.am << 'END'
magic:
@echo $(DISTFILES)
END
$ACLOCAL || exit 1
$AUTOMAKE -a || exit 1
fgrep -v @SET_MAKE@ sub/Makefile.in > sub/Makefile.sed
test -f sub/texinfo.tex &&
$MAKE -s -f sub/Makefile.sed SHELL=/bin/sh magic | grep 'texinfo\.tex'
stat=$?
exit $stat