From: Tom Tromey Date: Sun, 21 Jan 1996 05:17:43 +0000 (+0000) Subject: Bug fix X-Git-Tag: Release-0-29~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ba03006df6a2aa0fc017dce605c2553282241850;p=thirdparty%2Fautomake.git Bug fix --- diff --git a/ChangeLog b/ChangeLog index bd65b170f..c64850579 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Jan 20 15:54:24 1996 Tom Tromey + + * automake.in (handle_dist_worker): Bug fix. + Fri Jan 19 00:50:29 1996 Tom Tromey * automake.in (require_file): Install missing files only according diff --git a/TODO b/TODO index b1876987f..5724e30c1 100644 --- a/TODO +++ b/TODO @@ -7,7 +7,7 @@ Handle MAINT_CHARSET. Use recode in dist target. Handle dist-zoo and dist-zip. Add support for html via an option. Use texi2html. Use "html_HTMLS", -and htmldir = .../html. +and htmldir = .../html. Include html files in distribution. if configure.in not found, move up a directory and try again? This could eliminate a common source of problems. diff --git a/automake.in b/automake.in index 71696131d..47f822b52 100755 --- a/automake.in +++ b/automake.in @@ -770,7 +770,7 @@ sub handle_dist_worker # distribution. Note that DISTFILES can contain a wildcard (for # info files, sigh), so we must use the echo trick. - $output_rules .= ' @for file in `cd $(srcdir) && $(DISTFILES); do \\ + $output_rules .= ' @for file in `cd $(srcdir) && echo $(DISTFILES)`; do \\ test -f $(distdir)/$$file \\ || ln $(srcdir)/$$file $(distdir)/$$file 2> /dev/null \\ || cp -p $(srcdir)/$$file $(distdir)/$$file; \\