From: Tom Tromey Date: Mon, 1 Feb 1999 12:03:48 +0000 (+0000) Subject: * automake.in (handle_dist_worker): Correctly find find in $$d, X-Git-Tag: v1.10.2~2738 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b598915cc8e2ab2c75b3cd2be3c8890a5a666566;p=platform%2Fupstream%2Fautomake.git * automake.in (handle_dist_worker): Correctly find find in $$d, not $$. From Bill Davidson. --- diff --git a/ChangeLog b/ChangeLog index 388c964..fe97ae6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1999-02-01 Tom Tromey + * 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 --- 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 diff --git a/automake.in b/automake.in index 26a97e5..ac3b71b 100755 --- a/automake.in +++ b/automake.in @@ -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"