commit | 925b1448bcd866977b7a3571d1c890618dfbe98e | [log] [tgz] |
---|---|---|
author | André Hentschel <nerv@dawncrow.de> | Fri May 01 11:37:13 2009 +0200 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri May 01 13:13:41 2009 +0200 |
tree | 7b8c940920365cc1837a308fabad83348802076f | |
parent | 5b4b4955bee9bb7e2117270856382a935a540bf7 [diff] [blame] |
winemaker: Remove unnecessary quote filtering.
diff --git a/tools/winemaker b/tools/winemaker index 55fc6f1..8170720 100755 --- a/tools/winemaker +++ b/tools/winemaker
@@ -1118,10 +1118,9 @@ 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";