From d92c2e8ea238dcd726a6b9c2f564639b26a4c232 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Tue, 6 Feb 1996 01:09:59 +0000 Subject: [PATCH] Fixlet --- ChangeLog | 2 ++ Makefile.in | 4 ++-- automake.in | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1db3fca1..0bd67ecf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ Mon Feb 5 14:58:58 1996 Tom Tromey + * 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. diff --git a/Makefile.in b/Makefile.in index f3ed8f6e..356bd35d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -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 diff --git a/automake.in b/automake.in index 2fcc78cc..56e68094 100755 --- a/automake.in +++ b/automake.in @@ -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"); -- 2.43.5