Commit 7826a3a4 authored by timeless%mozdev.org's avatar timeless%mozdev.org

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

r=justdave a=justdave
parent 7376b09e
......@@ -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};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment