winemaker: Use utf-8 for stdout.

oldstable
André Hentschel 2013-06-16 20:55:04 +02:00 committed by Alexandre Julliard
parent b5bb995e5c
commit 5b2d515763
1 changed files with 4 additions and 2 deletions

View File

@ -2,7 +2,7 @@
use utf8;
use strict;
# Copyright 2000-2004 Francois Gouget for CodeWeavers
# Copyright 2000-2004 François Gouget for CodeWeavers
# Copyright 2004 Dimitrie O. Paun
# Copyright 2009-2012 André Hentschel
#
@ -2669,7 +2669,7 @@ $opt_no_banner=0;
sub print_banner()
{
print "Winemaker $version\n";
print "Copyright 2000-2004 Francois Gouget <fgouget\@codeweavers.com> for CodeWeavers\n";
print "Copyright 2000-2004 François Gouget <fgouget\@codeweavers.com> for CodeWeavers\n";
print "Copyright 2004 Dimitrie O. Paun\n";
print "Copyright 2009-2012 André Hentschel\n";
}
@ -2693,6 +2693,8 @@ sub usage()
exit (2);
}
binmode(STDOUT, ":utf8");
target_init(\@global_settings);
foreach(@ARGV) {