From 2c095a8d87371b444ebfcc849c9c51f06bd9809e Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 9 Feb 2001 02:30:27 +0000 Subject: [PATCH] * automake.in (file_contents): Only add $actions if any are found. Fixes new failure in pr87.test. --- ChangeLog | 5 +++++ automake.in | 7 ++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index bba04c059..9f67dd3ea 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 eafaa123a..06e2a08e7 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; -- 2.47.2