diff options
author | Josh ben Jore <jjore@cpan.org> | 2009-10-10 22:36:52 -0700 |
---|---|---|
committer | Josh ben Jore <jjore@cpan.org> | 2009-10-10 22:36:52 -0700 |
commit | 41910e6c5f112b421f81721452e700d9f3594f8c (patch) | |
tree | 0849e310cf6889991c5170de0a46345071a03d39 /t/op/groups.t | |
parent | 1f6d8279441f75be6685d3b44bf2194fd47482e2 (diff) | |
download | perl-41910e6c5f112b421f81721452e700d9f3594f8c.tar.gz |
Darwin's groups can have spaces in them
Diffstat (limited to 't/op/groups.t')
-rw-r--r-- | t/op/groups.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/groups.t b/t/op/groups.t index 404b8cd8ab..0ef15ad5d3 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 { |