This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: [PATCH] Re: perl winpid?
authorYitzchak Scott-Thoennes <sthoenna@efn.org>
Tue, 15 Feb 2005 20:45:13 +0000 (12:45 -0800)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Wed, 16 Feb 2005 13:20:55 +0000 (13:20 +0000)
Message-ID: <20050216044512.GA2516@efn.org>

p4raw-id: //depot/perl@23973

ext/B/t/stash.t

index a6e4635..879368a 100755 (executable)
@@ -61,7 +61,7 @@ print "# got = @got\n";
 @got = grep { ! /^Win32$/                     } @got  if $^O eq 'MSWin32';
 @got = grep { ! /^NetWare$/                   } @got  if $^O eq 'NetWare';
 @got = grep { ! /^(Cwd|File|File::Copy|OS2)$/ } @got  if $^O eq 'os2';
-@got = grep { ! /^Cwd$/                       } @got  if $^O eq 'cygwin';
+@got = grep { ! /^(Cwd|Cygwin)$/              } @got  if $^O eq 'cygwin';
 
 if ($Is_VMS) {
     @got = grep { ! /^File(?:::Copy)?$/    } @got;