summaryrefslogtreecommitdiff
path: root/automake.in
diff options
context:
space:
mode:
authorAlexandre Duret-Lutz <adl@gnu.org>2003-08-24 02:16:31 +0000
committerAlexandre Duret-Lutz <adl@gnu.org>2003-08-24 02:16:31 +0000
commit4de3f2b8f05b5f46d32af7585e02302382688cbb (patch)
treeafcb95e5df161f325edf66e184bdf87347d60fd3 /automake.in
parent0bdf8b9d9e34ddd3604baf8c385cce76311202fc (diff)
downloadautomake-4de3f2b8f05b5f46d32af7585e02302382688cbb.tar.gz
* automake.in (file_contents_internal): Do not add newlines before
empty actions.
Diffstat (limited to 'automake.in')
-rwxr-xr-xautomake.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/automake.in b/automake.in
index a55f1a94b..5c8dce20a 100755
--- a/automake.in
+++ b/automake.in
@@ -5728,7 +5728,7 @@ sub file_contents_internal ($$$%)
&depend ($_, @deps);
if ($actions{$_})
{
- $actions{$_} .= "\n$actions";
+ $actions{$_} .= "\n$actions" if $actions;
}
else
{