From: Tom Tromey Date: Fri, 9 Feb 2001 02:30:27 +0000 (+0000) Subject: * automake.in (file_contents): Only add $actions if any are X-Git-Tag: Release-1-4d~13 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=29c0b7f827b6e3a1bd2b7c6035aaa3c513287081;p=automake.git * automake.in (file_contents): Only add $actions if any are found. Fixes new failure in pr87.test. --- diff --git a/ChangeLog b/ChangeLog index bba04c05..9f67dd3e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-02-08 Tom Tromey + + * automake.in (file_contents): Only add $actions if any are + found. Fixes new failure in pr87.test. + 2001-02-08 Pavel Roskin * tests/pr87.test: Check foo/Makfile.in after it is created. diff --git a/automake.in b/automake.in index eafaa123..06e2a08e 100755 --- a/automake.in +++ b/automake.in @@ -7097,7 +7097,12 @@ sub file_contents $result_rules .= "$targets:"; $result_rules .= " $dependencies" if $dependencies; - $result_rules .= "\n$actions\n"; + $result_rules .= "\n"; + # Only add actions if we found some. Otherwise + # we can end up with a spurious newline. See + # pr87.test. + $result_rules .= "$actions\n" + if $actions; } $comment = $separator = ''; last;