winapi: Update and simplify file_skip() to match the current sources.

This commit is contained in:
Francois Gouget 2007-02-20 15:50:21 +01:00 committed by Alexandre Julliard
parent ba517e57d2
commit 03bcef1d94
1 changed files with 2 additions and 5 deletions

View File

@ -108,11 +108,8 @@ sub file_skip($) {
$_ = file_absolutize($_);
m%^(?:loader|libs|programs|server|tools)/% && return 1;
m%^dlls/wineps/data/% && return 1;
m%^dlls/winmm/wineoss/midipatch\.c$% && return 1;
m%spec\.c$% && return 1;
m%^(?:dlls|include)/% || return 1;
m%^dlls/wineps\.drv/data/% && return 1;
return 0;
}