* Add support for libtool
* look at guile-ref; not all .texi are distributed!
problem is canonical naming; add test for this.
-* install-sh message can appear multiple times: bogus!
+* At top level, config.h is not depended on...
Other priorities:
* Must rewrite am_install_var. Should break into multiple functions.
Wed Apr 3 15:10:54 1996 Tom Tromey <tromey@creche.cygnus.com>
+ * canon2.test: New file
+
* insh.test: New file.
Wed Mar 27 23:31:51 1996 Tom Tromey <tromey@creche.cygnus.com>
TESTS = mdate.test vtexi.test acoutput.test instexec.test checkall.test \
acoutnoq.test acouttbs.test libobj.test proginst.test acoutqnl.test \
confincl.test spelling.test prefix.test badprog.test depend.test exdir.test \
-canon.test installsh.test empty.test rulepat.test insh.test
+canon.test installsh.test empty.test rulepat.test insh.test canon2.test
## Maybe automake should distribute TESTS? You tell me.
EXTRA_DIST = defs $(TESTS)
TESTS = mdate.test vtexi.test acoutput.test instexec.test checkall.test \
acoutnoq.test acouttbs.test libobj.test proginst.test acoutqnl.test \
confincl.test spelling.test prefix.test badprog.test depend.test exdir.test \
-canon.test installsh.test empty.test rulepat.test insh.test
+canon.test installsh.test empty.test rulepat.test insh.test canon2.test
EXTRA_DIST = defs $(TESTS)
DIST_COMMON = ChangeLog Makefile.am Makefile.in
--- /dev/null
+#! /bin/sh
+
+# Test to make sure name canonicalization happens for texinfo.
+
+. $srcdir/defs || exit 1
+
+cat > Makefile.am << 'END'
+info_TEXINFOS = zar-doz.texi
+zar_doz_TEXINFOS = frob.texi
+END
+
+: > texinfo.tex
+: > zar-doz.texi
+: > frob.texi
+
+$AUTOMAKE || exit 1
+
+grep zar-doz_TEXINFOS Makefile.in && exit 1
+exit 0