in reply to Problems with IPC::Open3
Now, there exists a IPC::Open3 with the same version - 1.02 - in perl 5.10.0, but the code is slightly different and correct:168 exec @cmd # XXX: wrong process to croak from 169 or croak "$Me: exec of @cmd failed";
That is really annoying! The versions are the same but the code is not identical and I have no chance to "upgrade" Open3.pm - only if I copy the code down to my disk.265 exec @cmd or do { 266 carp "$Me: exec of @cmd failed"; 267 eval { require POSIX; POSIX::_exit(255); }; 268 exit 255; 269 };
|
|---|