commit | d2da622138a90364438cb1d7ba74b219b3fa3cf7 | [log] [tgz] |
---|---|---|
author | Andres Amaya Garcia <Andres.AmayaGarcia@arm.com> | Tue Oct 17 21:23:15 2017 +0100 |
committer | Andres Amaya Garcia <Andres.AmayaGarcia@arm.com> | Tue Oct 17 21:23:15 2017 +0100 |
tree | d13b54539ad61d7d5dbc6aaa07d130ee310ef502 | |
parent | 36855d66bbdc5c204013b125a0d60ea4b3b061f4 [diff] [blame] |
Ensure that only .h files are parsed in generate_errors.pl
diff --git a/scripts/generate_errors.pl b/scripts/generate_errors.pl index 040a488..96ee119 100755 --- a/scripts/generate_errors.pl +++ b/scripts/generate_errors.pl
@@ -46,7 +46,7 @@ $/ = $line_separator; -my @files = <$include_dir/*>; +my @files = <$include_dir/*.h>; my @matches; foreach my $file (@files) { open(FILE, "$file");