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:
parent
e77c27d734
commit
695e589b0c
@ -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;
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user