From: Tom Tromey Date: Mon, 11 Jan 1999 14:00:57 +0000 (+0000) Subject: 1999-01-11 Alexandre Oliva X-Git-Tag: Release-1-4~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f99ec8d857c94c90448bd8efbabe40d7af08bdf;p=thirdparty%2Fautomake.git 1999-01-11 Alexandre Oliva * automake.in (handle_dist_worker): avoid failure in `make dist' if last file is a builddir-only file --- diff --git a/ChangeLog b/ChangeLog index 96be560f9..8f17266d3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-01-11 Alexandre Oliva + + * automake.in (handle_dist_worker): avoid failure in `make dist' + if last file is a builddir-only file + 1999-01-11 Alexandre Oliva * missing (autoheader): `s' was missing from sed script; grr diff --git a/automake.in b/automake.in index 07798643d..c3edae8b4 100755 --- a/automake.in +++ b/automake.in @@ -2369,7 +2369,7 @@ sub handle_dist_worker . "\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 || cp -p \$\$d/\$\$file \$(distdir)/\$\$file || :; \\\n" . "\t fi; \\\n" . "\tdone\n");