Fixlet
authorTom Tromey <tromey@redhat.com>
Tue, 6 Feb 1996 01:09:59 +0000 (01:09 +0000)
committerTom Tromey <tromey@redhat.com>
Tue, 6 Feb 1996 01:09:59 +0000 (01:09 +0000)
ChangeLog
Makefile.in
automake.in

index 1db3fca..0bd67ec 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 Mon Feb  5 14:58:58 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
+       * automake.in (handle_texinfo): Include "rm" when deleting files.
+
        * Makefile.am (maintainer-check): Expect only one ${...}.
        * texinfos.am (install-info): Remove unneeded ${...}.  From Jim
        Meyering.
index f3ed8f6..356bd35 100644 (file)
@@ -165,7 +165,7 @@ automake.info: automake.texi
 install-info: $(INFO_DEPS)
        $(top_srcdir)/mkinstalldirs $(infodir)
        for file in $(INFO_DEPS); do            \
-         for ifile in `cd $(srcdir) && echo $${file}*`; do \
+         for ifile in `cd $(srcdir) && echo $$file*`; do \
            $(INSTALL_DATA) $(srcdir)/$$ifile $(infodir)/$$ifile; \
          done;                                 \
        done
@@ -176,7 +176,7 @@ uninstall-info:
        done
 
 mostlyclean-info:
-        automake.aux automake.cp automake.cps automake.dvi automake.fn \
+       rm -f automake.aux automake.cp automake.cps automake.dvi automake.fn \
          automake.fns automake.ky automake.log automake.pg automake.toc \
          automake.tp automake.vr automake.op
 
index 2fcc78c..56e6809 100755 (executable)
@@ -675,7 +675,7 @@ sub handle_texinfo
 
     # How to clean.
     $output_rules .= "\nmostlyclean-info:\n";
-    &pretty_print_rule ("\t", "\t  ", @texi_cleans);
+    &pretty_print_rule ("\trm -f", "\t  ", @texi_cleans);
     $output_rules .= ("\nclean-info:\n\ndistclean-info:\n\n"
                      . "maintainer-clean-info:\n\t"
                      . 'rm -f $(INFOS)' . "\n");