1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-12 09:09:09 +00:00

(svn r12881) -Fix (r12770): the check for missing header files could find more files than needed

This commit is contained in:
glx
2008-04-24 23:40:42 +00:00
parent 4ac6655bad
commit 1d9dbd9401

View File

@@ -52,12 +52,12 @@ Sub get_files(srcdir, dir, list)
' pattern for files to keep
Set rekeep = New RegExp
rekeep.Pattern = "\.h"
rekeep.Pattern = "\.h(pp)?$"
rekeep.Global = True
' pattern for files to exclude
Set reskip = New RegExp
reskip.Pattern = "\.svn|\.hpp\.sq"
reskip.Pattern = "\.svn"
reskip.Global = True
For Each file in dir.Files