Include newlines at the end of generated asm.

Perl's print doesn't automatically include a newline and the delocate
script doesn't like files that don't end with one.

Change-Id: Ib1bce2b3bb6fbe1a122bd88b58198b497c599adb
Reviewed-on: https://boringssl-review.googlesource.com/31804
Commit-Queue: David Benjamin <davidben@google.com>
Reviewed-by: David Benjamin <davidben@google.com>
CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
This commit is contained in:
Adam Langley 2018-09-10 09:28:05 -07:00 committed by CQ bot account: commit-bot@chromium.org
parent e77c27d734
commit 695e589b0c
2 changed files with 2 additions and 2 deletions

View File

@ -194,6 +194,6 @@ while(my $line=<>) {
} }
print "#endif\n" if ($flavour eq "linux32" || $flavour eq "linux64"); print "#endif\n" if ($flavour eq "linux32" || $flavour eq "linux64");
print "#endif // !OPENSSL_NO_ASM"; print "#endif // !OPENSSL_NO_ASM\n";
close STDOUT; close STDOUT;

View File

@ -306,6 +306,6 @@ while($line=<>) {
print "\n"; print "\n";
} }
print "#endif // !OPENSSL_NO_ASM && __powerpc64__"; print "#endif // !OPENSSL_NO_ASM && __powerpc64__\n";
close STDOUT; close STDOUT;