Commit 925b1448 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winemaker: Remove unnecessary quote filtering.

parent 5b4b4955
......@@ -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";
......
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