* automake.in (handle_dist_worker): Correctly find find in $$d,
authorTom Tromey <tromey@redhat.com>
Mon, 1 Feb 1999 12:03:48 +0000 (12:03 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 1 Feb 1999 12:03:48 +0000 (12:03 +0000)
not $$.  From Bill Davidson.

ChangeLog
THANKS
automake.in

index 388c964..fe97ae6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 1999-02-01  Tom Tromey  <tromey@cygnus.com>
 
+       * automake.in (handle_dist_worker): Correctly find find in $$d,
+       not $$.  From Bill Davidson.
+
        * automake.in (finish_languages): Use "&", not "do".  From Pavel
        Roskin.
        (handle_single_transform_list): Likewise.
diff --git a/THANKS b/THANKS
index 5ee0e76..371f2fc 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -12,6 +12,7 @@ Anthony Green         green@cygnus.com
 Assar Westerlund       assar@sics.se
 Bernard Urban          Bernard.Urban@meteo.fr
 Bill Currie            bcurrie@tssc.co.nz
+Bill Davidson          bill@kayhay.com
 Bill Fenner            fenner@parc.xerox.com
 Brian Jones            cbj@nortel.net
 Chris Provenzano       proven@io.proven.org
index 26a97e5..ac3b71b 100755 (executable)
@@ -2367,7 +2367,7 @@ sub handle_dist_worker
        $output_rules .= "\t  d=\$(srcdir); \\\n";
     }
     $output_rules .= ("\t  if test -d \$\$d/\$\$file; then \\\n"
-                     . "\t    cp -pr \$\$/\$\$file \$(distdir)/\$\$file; \\\n"
+                     . "\t    cp -pr \$\$d/\$\$file \$(distdir)/\$\$file; \\\n"
                      . "\t  else \\\n"
                      . "\t    test -f \$(distdir)/\$\$file \\\n"
                      . "\t    || ln \$\$d/\$\$file \$(distdir)/\$\$file 2> /dev/null \\\n"