]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
Bug fix
authorTom Tromey <tromey@redhat.com>
Sun, 21 Jan 1996 05:17:43 +0000 (05:17 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 21 Jan 1996 05:17:43 +0000 (05:17 +0000)
ChangeLog
TODO
automake.in

index bd65b170f8809cdd8af74874af7c622a2cfac81a..c64850579e68cc271705023b2458918ac6171be0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Jan 20 15:54:24 1996  Tom Tromey  <tromey@creche.cygnus.com>
+
+       * automake.in (handle_dist_worker): Bug fix.
+
 Fri Jan 19 00:50:29 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
        * automake.in (require_file): Install missing files only according
diff --git a/TODO b/TODO
index b1876987f60b8900ffb6806c25e65ce83ca672cd..5724e30c16fe4837639fea18c573d023e77dd3a7 100644 (file)
--- 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.
index 71696131d9853c2cb79057ccac5327d93a085e65..47f822b5206c126c182fc4683422d106a23eb5f1 100755 (executable)
@@ -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; \\