From: Matt Selsky Date: Mon, 30 Jul 2012 20:52:38 +0000 (-0400) Subject: Bug 778226 - Add Mac OS 10.8 Mountain Lion detection X-Git-Tag: bugzilla-4.2.3~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2cab4974d0ee9c1958769c76f7437b848fef332a;p=thirdparty%2Fbugzilla.git Bug 778226 - Add Mac OS 10.8 Mountain Lion detection r=timeless, a=LpSolit --- diff --git a/enter_bug.cgi b/enter_bug.cgi index 59edc2e13b..5b684a9658 100755 --- a/enter_bug.cgi +++ b/enter_bug.cgi @@ -310,6 +310,7 @@ sub pickos { /\(.*Windows.*NT.*\)/ && do {push @os, "Windows NT";}; }; /\(.*Mac OS X.*\)/ && do { + /\(.*Mac OS X (?:|Mach-O |\()10.8.*\)/ && do {push @os, "Mac OS X 10.8";}; /\(.*Mac OS X (?:|Mach-O |\()10.7.*\)/ && do {push @os, "Mac OS X 10.7";}; /\(.*Mac OS X (?:|Mach-O |\()10.6.*\)/ && do {push @os, "Mac OS X 10.6";}; /\(.*Mac OS X (?:|Mach-O |\()10.5.*\)/ && do {push @os, "Mac OS X 10.5";};