Subject: | IPC::Run dosen't list Win32::Process as its prerequisite |
When building IPC::Run, the Makefile.PL dosen't check for Win32::Process, which is needed under Win32. Adding the following lines to the Makefile.PL fixes that:
if ( $^O =~ /Win32/ ) {
push @conditional_prereqs, "Win32::Process" => 0.0;
};