Tag
Hash :
7d2b6f05
Author :
Date :
1999-04-07T02:15:17
* texinfo8.test: texinfo.tex is only disted by aux/Makefile.
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'
PACKAGE=nonesuch
VERSION=nonesuch
AC_ARG_PROGRAM
AC_PROG_INSTALL
AC_OUTPUT(Makefile aux/Makefile)
AC_CONFIG_AUX_DIR(aux)
END
cat > Makefile.am << 'END'
info_TEXINFOS = textutils.texi
END
echo '@setfilename textutils.info' > textutils.texi
test -d aux || mkdir aux
cat > aux/Makefile.am << 'END'
magic:
@echo $(DISTFILES)
END
$AUTOMAKE -a || exit 1
test -f aux/texinfo.tex &&
$MAKE -s -f aux/Makefile.in SHELL=/bin/sh magic | grep 'texinfo\.tex'
stat=$?
exit $stat