From: Matt Selsky Date: Sun, 26 Feb 2012 11:52:49 +0000 (+0100) Subject: Bug 714030: Add Mac OS 10.7 Lion detection X-Git-Tag: bugzilla-4.2.1~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0f9e374c20bb56cf1df8733863d42f0660b8510a;p=thirdparty%2Fbugzilla.git Bug 714030: Add Mac OS 10.7 Lion detection r/a=LpSolit --- diff --git a/enter_bug.cgi b/enter_bug.cgi index ce50a2ce67..59edc2e13b 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.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";}; /\(.*Mac OS X (?:|Mach-O |\()10.4.*\)/ && do {push @os, "Mac OS X 10.4";};