Skip to content

Commit e696c9c

Browse files
committed
i386 for OSX, not i686
1 parent 44773e0 commit e696c9c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

perl/devkitARMupdate.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@
6262
$downloader = "wget -q";
6363
$archname = $arch . "-linux";
6464
}
65-
elsif($os eq "Darwin" and ($arch eq "i686" or $arch eq "x86_64"))
65+
elsif($os eq "Darwin" and ($arch eq "i386" or $arch eq "x86_64"))
6666
{
6767
$downloader = "curl -L -O -s";
6868
$archname = "i386-osx";
6969
}
7070
else
7171
{
72-
printf(STDERR "Not on Linux i686/x86_64 or Darwin!\n");
72+
printf(STDERR "Not on Linux i686/x86_64 or Darwin i386/x86_64!\n");
7373
exit(1);
7474
}
7575

perl/devkitPPCupdate.pl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@
6262
$downloader = "wget -q";
6363
$archname = $arch . "-linux";
6464
}
65-
elsif($os eq "Darwin" and ($arch eq "i686" or $arch eq "x86_64"))
65+
elsif($os eq "Darwin" and ($arch eq "i386" or $arch eq "x86_64"))
6666
{
6767
$downloader = "curl -L -O -s";
6868
$archname = "i386-osx";
6969
}
7070
else
7171
{
72-
printf(STDERR "Not on Linux i686/x86_64 or Darwin!\n");
72+
printf(STDERR "Not on Linux i686/x86_64 or Darwin i386/x86_64!\n");
7373
exit(1);
7474
}
7575

0 commit comments

Comments
 (0)