From: Harlan Stenn Date: Thu, 7 Nov 2024 06:13:48 +0000 (-0600) Subject: Tweak checkAuthors.in X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba82143208205f59500ccda0c7c43d4e9a0725fa;p=thirdparty%2Fntp.git Tweak checkAuthors.in bk: 672c5a9cwRZCeIpok-n40gf7p_Fdlw --- diff --git a/scripts/build/checkAuthors.in b/scripts/build/checkAuthors.in index 90f9b76fd..00d092919 100755 --- a/scripts/build/checkAuthors.in +++ b/scripts/build/checkAuthors.in @@ -63,8 +63,11 @@ my $A_path = shift @ARGV; $problem = 0; if (! -r $A_file) { - warn "$A_file is not readable!\n"; - ++$problem; + my @args = ("bk", "get", "-q", $A_file); + unless (system(@args) == 0) { + warn "system @args failed: $?"; + ++$problem; + } } if (! -d $A_path) {