Module: wine Branch: master Commit: 03bcef1d94641d8c7a55a6d137d1a1e99674a0e0 URL: http://source.winehq.org/git/wine.git/?a=commit;h=03bcef1d94641d8c7a55a6d137...
Author: Francois Gouget fgouget@free.fr Date: Tue Feb 20 15:50:21 2007 +0100
winapi: Update and simplify file_skip() to match the current sources.
---
tools/winapi/config.pm | 7 ++----- 1 files changed, 2 insertions(+), 5 deletions(-)
diff --git a/tools/winapi/config.pm b/tools/winapi/config.pm index b652e49..fd45dc7 100644 --- a/tools/winapi/config.pm +++ b/tools/winapi/config.pm @@ -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; }