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

enter_bug.cgi

index 70c989ecaeec999aeadf588217c8d7cf32841f23..a5a4cedcadac936eaafb1b1fb76afe7d03d977f1 100755 (executable)
@@ -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};