From: timeless%mozdev.org <> Date: Tue, 8 Aug 2006 05:04:02 +0000 (+0000) Subject: Bug 347777 Intel Mac should be detected as Hardware: PC rather than Hardware: Mac X-Git-Tag: bugzilla-2.20.3~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0234a799e894a900135faf4a37a3920fe37269e5;p=thirdparty%2Fbugzilla.git Bug 347777 Intel Mac should be detected as Hardware: PC rather than Hardware: Mac r=justdave a=justdave --- diff --git a/enter_bug.cgi b/enter_bug.cgi index 3e6b741afb..3ba6b20413 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -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};