Skip to content

Commit

Permalink
X.509: do not emit any informational output
Browse files Browse the repository at this point in the history
When building a kernel using 'make -s', I expect to see an empty output,
except for build warnings and errors. The build_OID_registry code
always prints one line when run, which is not helpful to most people
building the kernels, and which makes it harder to automatically
check for build warnings.

Let's just remove the one line output.

Signed-off-by: Arnd Bergmann <[email protected]>
Cc: David Howells <[email protected]>
Cc: Rusty Russell <[email protected]>
  • Loading branch information
arndb committed Jun 19, 2013
1 parent 930d800 commit a857c6e
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions lib/build_OID_registry
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@ my @indices = ();
my @lengths = ();
my $total_length = 0;

print "Compiling ", $#names + 1, " OIDs\n";

for (my $i = 0; $i <= $#names; $i++) {
my $name = $names[$i];
my $oid = $oids[$i];
Expand Down

0 comments on commit a857c6e

Please sign in to comment.