From: Jim Meyering Date: Sat, 4 Mar 2000 08:55:19 +0000 (+0000) Subject: (handle_dist_worker) [generating rules for distdir]: X-Git-Tag: Release-1-4b~122 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=813ae767a22ca7cf2e3c57ec5cc1da5266dbfd36;p=automake.git (handle_dist_worker) [generating rules for distdir]: Don't use `ln' (which was just a space optimization anyway) to populate $(distdir). Otherwise, the dist rules that change permissions would end up affecting the master sources. --- diff --git a/automake.in b/automake.in index da265cfa..223c721c 100755 --- a/automake.in +++ b/automake.in @@ -2666,7 +2666,6 @@ sub handle_dist_worker . "\t cp -pR \$\$d/\$\$file \$(distdir); \\\n" . "\t else \\\n" . "\t test -f \$(distdir)/\$\$file \\\n" - . "\t || ln \$\$d/\$\$file \$(distdir)/\$\$file 2> /dev/null \\\n" . "\t || cp -p \$\$d/\$\$file \$(distdir)/\$\$file || :; \\\n" . "\t fi; \\\n" . "\tdone\n");