From 03bcef1d94641d8c7a55a6d137d1a1e99674a0e0 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 20 Feb 2007 15:50:21 +0100 Subject: [PATCH] winapi: Update and simplify file_skip() to match the current sources. --- tools/winapi/config.pm | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tools/winapi/config.pm b/tools/winapi/config.pm index b652e490534..fd45dc7a238 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; }