From 932abac7058a4df6e3bfcf19f8d546c1dcd44eb1 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Sun, 21 Jan 1996 05:17:42 +0000 Subject: [PATCH] Bug fix --- ChangeLog | 4 ++++ TODO | 2 +- automake.in | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index bd65b170..c6485057 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 b1876987..5724e30c 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 71696131..47f822b5 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; \\ -- 2.43.5