Skip to content

Commit 542e63e

Browse files
committed
enable osx 64bit binaries
1 parent e696c9c commit 542e63e

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

perl/devkitARMupdate.pl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@
5959
# Check OS information
6060
if($os eq "Linux" and ($arch eq "i686" or $arch eq "x86_64"))
6161
{
62-
$downloader = "wget -q";
63-
$archname = $arch . "-linux";
62+
$downloader = "wget -q";
63+
$archname = $arch . "-linux";
6464
}
6565
elsif($os eq "Darwin" and ($arch eq "i386" or $arch eq "x86_64"))
6666
{
67-
$downloader = "curl -L -O -s";
68-
$archname = "i386-osx";
67+
$downloader = "curl -L -O -s";
68+
$archname = $arch . "-osx";
6969
}
7070
else
7171
{

perl/devkitPPCupdate.pl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,13 @@
5959
# Check OS information
6060
if($os eq "Linux" and ($arch eq "i686" or $arch eq "x86_64"))
6161
{
62-
$downloader = "wget -q";
63-
$archname = $arch . "-linux";
62+
$downloader = "wget -q";
63+
$archname = $arch . "-linux";
6464
}
6565
elsif($os eq "Darwin" and ($arch eq "i386" or $arch eq "x86_64"))
6666
{
67-
$downloader = "curl -L -O -s";
68-
$archname = "i386-osx";
67+
$downloader = "curl -L -O -s";
68+
$archname = $arch . "-osx";
6969
}
7070
else
7171
{

0 commit comments

Comments
 (0)