From: Josh ben Jore Date: Sun, 11 Oct 2009 05:36:52 +0000 (-0700) Subject: Darwin's groups can have spaces in them X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=41910e6c5f112b421f81721452e700d9f3594f8c;p=p5sagit%2Fp5-mst-13.2.git Darwin's groups can have spaces in them --- diff --git a/t/op/groups.t b/t/op/groups.t index 404b8cd..0ef15ad 100644 --- a/t/op/groups.t +++ b/t/op/groups.t @@ -137,7 +137,7 @@ for (split(' ', $()) { print "# gr = @gr\n"; my %did; -if ($^O =~ /^(?:uwin|cygwin|interix|solaris|linux)$/) { +if ($^O =~ /^(?:uwin|cygwin|interix|solaris|linux|darwin)$/) { # Or anybody else who can have spaces in group names. $gr1 = join(' ', grep(!$did{$_}++, sort split(' ', join(' ', @gr)))); } else {