+Tue Apr 23 17:57:13 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
+
+ * doc/mdate-sh: Extract the last field from the date output, not
+ the sixth, which will fail when the timezone name has more than
+ one word or is missing.
+
Wed Apr 24 20:29:26 1996 Tom Tromey <tromey@creche.cygnus.com>
* automake.in (am_install_var): Use delete, not undef, to remove
It would not be what it is today without the invaluable help of these
people:
+Andreas Schwab <schwab@lamothe.informatik.uni-dortmund.de>
Dieter Baron <dillo@stieltjes.smc.univie.ac.at>
François Pinard <pinard@iro.umontreal.ca>
Gord Matzigkeit <gord@enci.ucalgary.ca>
# Here we have to deal with the problem that the ls output gives either
# the time of day or the year.
case $3 in
- *:*) set `date`; year=$6
+ *:*) set `date`; eval year=\$$#
case $2 in
Jan) nummonthtod=1;;
Feb) nummonthtod=2;;
# Here we have to deal with the problem that the ls output gives either
# the time of day or the year.
case $3 in
- *:*) set `date`; year=$6
+ *:*) set `date`; eval year=\$$#
case $2 in
Jan) nummonthtod=1;;
Feb) nummonthtod=2;;
+Thu Apr 25 17:12:30 1996 Tom Tromey <tromey@creche.cygnus.com>
+
+ * extra.test (EXTRA_PROGRAMS): New file.
+
Tue Apr 9 22:55:07 1996 Tom Tromey <tromey@creche.cygnus.com>
* target.test: New file.
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 canon2.test \
-target.test
+target.test extra.test
EXTRA_DIST = defs $(TESTS)
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 canon2.test \
-target.test
+target.test extra.test
EXTRA_DIST = defs $(TESTS)
DIST_COMMON = ChangeLog Makefile.am Makefile.in
--- /dev/null
+#! /bin/sh
+
+# Test to make sure EXTRA_ targets are not generated.
+
+. $srcdir/defs || exit 1
+
+cat > Makefile.am << 'END'
+bin_PROGRAMS = @foo@
+EXTRA_PROGRAMS = zardoz
+END
+
+$AUTOMAKE || exit 1
+
+grep "^zardoz" Makefile.in && exit 1
+exit 0