Skip to content
Snippets Groups Projects
Commit a9ec0520 authored by sof's avatar sof
Browse files

[project @ 1998-02-25 12:17:06 by sof]

Prefix output with a newline to cope with Makefiles not having a newline at the end
parent 7be6700a
No related branches found
No related tags found
No related merge requests found
......@@ -218,7 +218,7 @@ while ($_ && $_ ne $End_magic_str) { # delete 'til End_magic_str
$_ = <OMKF>;
}
# insert dependencies
print $Begin_magic_str, @Depend_lines, $End_magic_str || die "Failed to write out dependencies ($!)";
print "\n$Begin_magic_str", @Depend_lines, $End_magic_str || die "Failed to write out dependencies ($!)";
while (<OMKF>) { # copy the rest through
print $_ || die "Failed to write out dependencies ($!)";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment