]> 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:03:21 +0000 (05:03 +0000)
committertimeless%mozdev.org <>
Tue, 8 Aug 2006 05:03:21 +0000 (05:03 +0000)
r=justdave a=justdave

enter_bug.cgi

index 89ebbcb8515ec12caa97a84d4ecc285181e46f40..5b042d1f1b3a909c9a8718e43b2e2e3e9b4083d6 100755 (executable)
@@ -198,6 +198,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};