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

[project @ 1999-03-02 20:23:37 by sof]

Don't prefix the generated output with \n
parent 2b61e6ed
No related merge requests found
......@@ -224,7 +224,7 @@ while ($_ && $_ ne $End_magic_str) { # delete 'til End_magic_str
$_ = <OMKF>;
}
# insert dependencies
print "\n$Begin_magic_str", @Depend_lines, $End_magic_str || die "Failed to write out dependencies ($!)";
print "$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