André Hentschel : winemaker: Remove unnecessary quote filtering.

Alexandre Julliard julliard at winehq.org
Fri May 1 09:33:21 CDT 2009


Module: wine
Branch: master
Commit: 925b1448bcd866977b7a3571d1c890618dfbe98e
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=925b1448bcd866977b7a3571d1c890618dfbe98e

Author: André Hentschel <nerv at dawncrow.de>
Date:   Fri May  1 11:37:13 2009 +0200

winemaker: Remove unnecessary quote filtering.

---

 tools/winemaker |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/tools/winemaker b/tools/winemaker
index 55fc6f1..8170720 100755
--- a/tools/winemaker
+++ b/tools/winemaker
@@ -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";




More information about the wine-cvs mailing list