utils: checkstyle.py: Check new header file on new and renamed meson.build files
Declaration of new header file to the build system are only checked against modified meson.build file. Therefore, this raises a false positive warning in case the meson.build is added or renamed. Add the new and renamed meson.build files to the list of files to check header file inclusion. Signed-off-by: Xavier Roumegue <xavier.roumegue@oss.nxp.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
5a8271ad70
commit
7ace78e215
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ class HeaderAddChecker(CommitChecker):
|
|||
def check(cls, commit, top_level):
|
||||
issues = []
|
||||
|
||||
meson_files = [f for f in commit.files('M')
|
||||
meson_files = [f for f in commit.files()
|
||||
if os.path.basename(f) == 'meson.build']
|
||||
|
||||
for filename in commit.files('AR'):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue