]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
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 1db3fca1e7292c56b8fd0e393b01d4a42fd20818..0bd67ecf69be6ec1dca36254b4cb1bcce2923a43 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 f3ed8f6edc5e451ac1a65848efdbb03b0116bf03..356bd35d6d160a52c8c639560d0d593dd29f9c20 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 2fcc78cc82c56cfd30b38d64f2215e8d772071e0..56e68094e570604d628d5cc568fd3515b7ec3d59 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");