From 29c0b7f827b6e3a1bd2b7c6035aaa3c513287081 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 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; -- 2.43.5