[PATCH] bug_report.pl: Use correct 'wine --version' syntax.

Molle Bestefich molle.bestefich at gmail.com
Thu Aug 10 15:38:48 CDT 2006


---

 tools/bug_report.pl |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

60f2cf9d12da4d3850887c5d816de0e21988aff8
diff --git a/tools/bug_report.pl b/tools/bug_report.pl
index 18f180c..f445c57 100755
--- a/tools/bug_report.pl
+++ b/tools/bug_report.pl
@@ -425,11 +425,11 @@ if ($debuglevel > 1) {
 		$winever .= " CVS";
 	}
 	else {
-		$winever = `$wineloc -v 2>&1`;
+		$winever = `$wineloc --version 2>&1`;
 		chomp $winever;
 	}
 } elsif ($debuglevel =~ 1) {
-	$winever=`$wineloc -v 2>&1`;
+	$winever=`$wineloc --version 2>&1`;
 	chomp $winever;
 }
 my $gccver=`gcc -v 2>&1`;
-- 
1.2.4



More information about the wine-patches mailing list