]> sourceware.org Git - automake.git/commitdiff
* texinfo8.test: texinfo.tex is only disted by aux/Makefile.
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Wed, 7 Apr 1999 02:15:16 +0000 (02:15 +0000)
committerAlexandre Oliva <oliva@dcc.unicamp.br>
Wed, 7 Apr 1999 02:15:16 +0000 (02:15 +0000)
tests/ChangeLog
tests/texinfo8.test

index 030de6700c25cabf09532de1b888322937b9e308..232d248f000a97cd3001bf7f75bc48f755a4f849 100644 (file)
@@ -1,5 +1,7 @@
 1999-04-07  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
+       * texinfo8.test: texinfo.tex is only disted by aux/Makefile.
+
        * texinfo8.test: New file.
        * Makefile.am (TESTS): Added texinfo8.test.
 
index aabde05b2866905696caad1b34a3d3ef694b8939..176cdaf49e11a0ff168a13a624032ff4ac24e087 100755 (executable)
@@ -1,27 +1,37 @@
 #! /bin/sh
 
-# Test to make sure texinfo.tex correctly installed by -a when we're
-# using AC_CONFIG_AUX_DIR.  Bug report by by Per Cederqvist.
+# 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
 
-echo 'AC_CONFIG_AUX_DIR(aux)' >> configure.in
+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
-magic:
-       @echo $(DISTFILES)
 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 Makefile.in SHELL=/bin/sh magic | grep 'aux/texinfo\.tex'
+$MAKE -s -f aux/Makefile.in SHELL=/bin/sh magic | grep 'texinfo\.tex'
 stat=$?
 
-rm -rf aux
 exit $stat
This page took 0.03427 seconds and 5 git commands to generate.