Browse Source

helper.pl - enable check_comments for --check-all

Karel Miko 8 years ago
parent
commit
f4ce5a21c8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      helper.pl

+ 1 - 1
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;