From: Tom Tromey Date: Tue, 6 Feb 1996 01:09:59 +0000 (+0000) Subject: Fixlet X-Git-Tag: Release-0-29~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0da4e7c93451c338fe290eb0e4efb3544908d10f;p=thirdparty%2Fautomake.git Fixlet --- diff --git a/ChangeLog b/ChangeLog index 1db3fca1e..0bd67ecf6 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 f3ed8f6ed..356bd35d6 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 2fcc78cc8..56e68094e 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");