Update of /cvsroot/module-build/Module-Build/lib/Module/Build/Platform
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16465/lib/Module/Build/Platform
Modified Files:
MacOS.pm VMS.pm Windows.pm os2.pm
Log Message:
Perl's support for multi-arg open with pipes is spotty, so use a flag for it
Index: Windows.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Platform/Windows.pm,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- Windows.pm 4 Mar 2006 00:42:45 -0000 1.32
+++ Windows.pm 25 Mar 2006 04:50:16 -0000 1.33
@@ -17,6 +17,8 @@
return '.';
}
+sub have_multiarg_pipeopen { 0 }
+
sub ACTION_realclean {
my ($self) = @_;
Index: os2.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Platform/os2.pm,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- os2.pm 3 Dec 2005 03:08:14 -0000 1.6
+++ os2.pm 25 Mar 2006 04:50:16 -0000 1.7
@@ -8,6 +8,8 @@
sub manpage_separator { '.' }
+sub have_multiarg_pipeopen { 0 }
+
1;
__END__
Index: MacOS.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Platform/MacOS.pm,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- MacOS.pm 2 Dec 2005 12:12:21 -0000 1.10
+++ MacOS.pm 25 Mar 2006 04:50:16 -0000 1.11
@@ -6,6 +6,8 @@
use ExtUtils::Install;
+sub have_multiarg_pipeopen { 0 }
+
sub new {
my $class = shift;
my $self = $class->SUPER::new(@_);
Index: VMS.pm
===================================================================
RCS file: /cvsroot/module-build/Module-Build/lib/Module/Build/Platform/VMS.pm,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- VMS.pm 24 Mar 2006 23:26:43 -0000 1.11
+++ VMS.pm 25 Mar 2006 04:50:16 -0000 1.12
@@ -131,6 +131,8 @@
return $return_args;
}
+sub have_multiarg_pipeopen { 0 }
+
=back
=head1 AUTHOR
|