Bug 347777 Intel Mac should be detected as Hardware: PC rather than Hardware: Mac

r=justdave a=justdave


git-svn-id: svn://10.0.0.236/trunk@206756 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
timeless%mozdev.org 2006-08-07 22:04:02 +00:00
parent 18acc00335
commit 3479f15de8

View File

@ -183,6 +183,7 @@ sub pickplatform {
/\(.*PPC.*\)/ && do {@platform = "Macintosh"; last;};
/\(.*AIX.*\)/ && do {@platform = "Macintosh"; last;};
#Intel x86
/\(.*Intel.*\)/ && do {@platform = "PC"; last;};
/\(.*[ix0-9]86.*\)/ && do {@platform = "PC"; last;};
#Versions of Windows that only run on Intel x86
/\(.*Win(?:dows )[39M].*\)/ && do {@platform = "PC"; last};