From f4ce5a21c83fbe96cc8b4e07955e4627c57b3d1f Mon Sep 17 00:00:00 2001 From: Karel Miko Date: Thu, 22 Jun 2017 09:53:55 +0200 Subject: [PATCH] helper.pl - enable check_comments for --check-all --- helper.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helper.pl b/helper.pl index b66dbce..ab41a51 100755 --- a/helper.pl +++ b/helper.pl @@ -366,7 +366,7 @@ my $failure; $failure ||= check_source() if $check_all || $check_source; $failure ||= check_defines() if $check_all || $check_defines; $failure ||= check_descriptors() if $check_all || $check_descriptors; -$failure ||= check_comments() if $check_comments; #XXX-FIXME not included in "--check-all" +$failure ||= check_comments() if $check_all || $check_comments; $failure ||= process_makefiles(0) if $check_all || $check_makefiles; $failure ||= process_makefiles(1) if $update_makefiles;