diff options
author | Kohei Yoshino <kohei.yoshino@gmail.com> | 2018-07-31 23:01:34 +0200 |
---|---|---|
committer | dklawren <dklawren@users.noreply.github.com> | 2018-07-31 23:01:34 +0200 |
commit | 7db724b31c41b25841fdeb85019d96eaa5e9a01a (patch) | |
tree | 20f38103ef4b81833b1b8db80df1038884baf3f9 | |
parent | e0d5d8450a3d15a97467b6b26ef298dd1dabcd45 (diff) | |
download | bugzilla-7db724b31c41b25841fdeb85019d96eaa5e9a01a.tar.gz bugzilla-7db724b31c41b25841fdeb85019d96eaa5e9a01a.tar.xz |
Bug 1466737 - "use my platform" should default to x86_64 on Mac OS X
-rw-r--r-- | Bugzilla/UserAgent.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/UserAgent.pm b/Bugzilla/UserAgent.pm index 0db6de808..bd31a2a13 100644 --- a/Bugzilla/UserAgent.pm +++ b/Bugzilla/UserAgent.pm @@ -26,6 +26,7 @@ use constant PLATFORMS_MAP => ( qr/\(.*[ix0-9]86 (?:on |\()x86_64.*\)/ => ["IA32", "x86", "PC"], qr/\(.*amd64.*\)/ => ["AMD64", "x86_64", "PC"], qr/\(.*x86_64.*\)/ => ["AMD64", "x86_64", "PC"], + qr/\(.*Intel Mac OS X.*\)/ => ["x86_64"], # Intel IA64 qr/\(.*IA64.*\)/ => ["IA64", "PC"], # Intel x86 |