diff options
author | Michael Meeks <michael.meeks@novell.com> | 2011-09-07 09:46:52 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2011-09-07 10:16:09 +0100 |
commit | 20a3baeb5da5bbb77eb2bf46d6714ad38dc4f19b (patch) | |
tree | 95a41b60ce0469ae8e16571bd4c71282bc04df20 /solenv/bin | |
parent | edabdcae9affcee5b940c09e96421d899c10d6d5 (diff) |
compensate for missing newlines at end of windows .d files when concatenating
Diffstat (limited to 'solenv/bin')
-rwxr-xr-x | solenv/bin/concat-deps.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/concat-deps.pl b/solenv/bin/concat-deps.pl index a9788cb0ac3f..c25df82cac2f 100755 --- a/solenv/bin/concat-deps.pl +++ b/solenv/bin/concat-deps.pl @@ -44,7 +44,7 @@ for my $fname (@depfiles) { print $last; $last = $line; } - print $last; + print "$last\n"; # in case of missing newline close ($fileh); } |