]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 347777 Intel Mac should be detected as Hardware: PC rather than Hardware: Mac
authortimeless%mozdev.org <>
Tue, 8 Aug 2006 05:04:02 +0000 (05:04 +0000)
committertimeless%mozdev.org <>
Tue, 8 Aug 2006 05:04:02 +0000 (05:04 +0000)
r=justdave a=justdave

enter_bug.cgi

index 3e6b741afbe96375e087b34968facb143fa3023e..3ba6b204136db588c9ac62aa6c578de5faa9465a 100755 (executable)
@@ -203,6 +203,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};