winemaker: Remove unnecessary quote filtering.

This commit is contained in:
André Hentschel 2009-05-01 11:37:13 +02:00 committed by Alexandre Julliard
parent 5b4b4955be
commit 925b1448bc
1 changed files with 1 additions and 2 deletions

View File

@ -1118,10 +1118,9 @@ sub source_scan_workspace_file($)
s/\r\n$/\n/;
# catch a project definition
if (/^Project:\s\"(.*)\"=\"?(.*)\s-/) {
if (/^Project:\s\"(.*)\"=(.*)\s-/) {
$prj_name=$1;
$prj_path=$2;
$prj_path=~s/\"$//;
@components=split /[\/\\]+/, $prj_path;
$prj_path=search_from($path, \@components);
print "Name: $prj_name\nPath: $prj_path\n";