winemaker: Catch special case in Workspace file.

Some sln files use that as a section to keep things like changelogs,
which we are not interested in.
oldstable
André Hentschel 2010-11-16 19:59:32 +01:00 committed by Alexandre Julliard
parent e883aeb394
commit c9ff0c5382
1 changed files with 1 additions and 0 deletions

View File

@ -1186,6 +1186,7 @@ sub source_scan_workspace_file($)
if (/^Project(.*)=\s*"(.*)",\s*"(.*)",\s*"(.*)"/) {
$prj_name=$2;
$prj_path=$3;
if ($prj_path eq "Solution Items") { next; }
@components=split /[\/\\]+/, $3;
$prj_path=search_from($path, \@components);
print "Name: $prj_name\nPath: $prj_path\n";