From: Bernhard R. Link Date: Wed, 30 May 2012 10:01:10 +0000 (+0200) Subject: Switch to new output format for --buildd mode. X-Git-Tag: 0.04~32 X-Git-Url: https://ruderich.org/simon/gitweb/?p=blhc%2Fblhc.git;a=commitdiff_plain;h=a1ade38eef7f07b148c07f1d2721fae8f1c8d5b1 Switch to new output format for --buildd mode. --- diff --git a/bin/blhc b/bin/blhc index 712d16c..544c567 100755 --- a/bin/blhc +++ b/bin/blhc @@ -656,7 +656,7 @@ foreach my $file (@ARGV) { if (not $option_buildd) { error_invalid_cmake($1); } else { - print "$buildd_tag{invalid_cmake} $1\n"; + print "$buildd_tag{invalid_cmake}|$1|\n"; } $exit |= $exit_code{invalid_cmake}; } @@ -668,7 +668,7 @@ foreach my $file (@ARGV) { if (not $option_buildd) { error_hardening_wrapper(); } else { - print "$buildd_tag{hardening_wrapper}\n"; + print "$buildd_tag{hardening_wrapper}||\n"; } $exit |= $exit_code{hardening_wrapper}; next FILE; @@ -802,7 +802,7 @@ foreach my $file (@ARGV) { if (not $option_buildd) { print "No compiler commands!\n"; } else { - print "$buildd_tag{no_compiler_commands}\n"; + print "$buildd_tag{no_compiler_commands}||\n"; } $exit |= $exit_code{no_compiler_commands}; next FILE; @@ -1076,11 +1076,11 @@ if ($option_buildd) { } if (scalar @warning) { local $" = ', '; # array join string - print "$buildd_tag{flags_missing} @warning missing\n"; + print "$buildd_tag{flags_missing}|@warning missing|\n"; } if ($statistics{commands_nonverbose}) { - printf "$buildd_tag{non_verbose_build} %d (of %d) hidden\n", + printf "$buildd_tag{non_verbose_build}|%d (of %d) hidden|\n", $statistics{commands_nonverbose}, $statistics{commands}, }