Another fix for 32/64 compatibility... just defaults everything to wine32 on x86_64
This commit is contained in:
parent
8d37e2f565
commit
24d11d6c9b
5
wino
5
wino
|
@ -30,7 +30,10 @@ my $HELP_MSG = "wino v $VERSION\n\tusage: wino --list | <prefix> [options] [comm
|
||||||
|
|
||||||
my $winecmd = 'wine';
|
my $winecmd = 'wine';
|
||||||
|
|
||||||
if (`uname -i` eq 'x86_64') { $winecmd = 'wine32'; }
|
my $uname = `uname -i`;
|
||||||
|
chomp $uname;
|
||||||
|
|
||||||
|
if ($uname eq "x86_64") { $winecmd = 'wine32'; }
|
||||||
|
|
||||||
foreach (@ARGV)
|
foreach (@ARGV)
|
||||||
{
|
{
|
||||||
|
|
Reference in New Issue
Block a user