Commit 2138bab7 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

winapi_check: gdi32.dll and gdi.exe have some extra sources in subdirectories.

parent c5f19303
......@@ -110,6 +110,17 @@ sub find_spec_files($) {
$$spec_file_found{$spec_file}++;
$$spec_file2dir{$spec_file}{$allowed_dir}++;
$$dir2spec_file{$allowed_dir}{$spec_file}++;
# gdi32.dll and gdi.exe have some extra sources in subdirectories
if ($spec_file =~ m!/gdi32\.spec$!)
{
$$spec_file2dir{$spec_file}{"$allowed_dir/enhmfdrv"}++;
$$dir2spec_file{"$allowed_dir/enhmfdrv"}{$spec_file}++;
}
if ($spec_file =~ m!/gdi(?:32|\.exe)\.spec$!)
{
$$spec_file2dir{$spec_file}{"$allowed_dir/mfdrv"}++;
$$dir2spec_file{"$allowed_dir/mfdrv"}{$spec_file}++;
}
}
return $spec_file_found;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment