Update of /cvsroot/module-build/Module-Build/lib/Module/Build/Platform
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18553/lib/Module/Build/Platform
Modified Files:
Tag: release-0_26_branch
Windows.pm
Log Message:
Make sure split_like_shell() always handles arrayrefs properly
Index: Windows.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Platform/Windows.pm,v
retrieving revision 1.13.2.4
retrieving revision 1.13.2.5
diff -C2 -d -r1.13.2.4 -r1.13.2.5
*** Windows.pm 13 Nov 2004 15:06:21 -0000 1.13.2.4
--- Windows.pm 17 Nov 2004 16:16:53 -0000 1.13.2.5
***************
*** 266,269 ****
--- 266,271 ----
(my $self, local $_) = @_;
+ return @$_ if defined() && UNIVERSAL::isa($_, 'ARRAY');
+
my @argv;
return @argv unless defined() && length();
|