summaryrefslogtreecommitdiff
path: root/cpan/IPC-Cmd
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2012-05-31 11:53:48 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2012-06-15 14:33:49 +0100
commit64883bec20d3d0f6f43c7e1a2d41d7fc61c47cdd (patch)
treedbcee0efded8b6a9454bc1f57d7e1ab1c7dd55bd /cpan/IPC-Cmd
parent22e7b04c73233b52240b8ae1d18d462e1bd432b4 (diff)
downloadperl-64883bec20d3d0f6f43c7e1a2d41d7fc61c47cdd.tar.gz
Updated IPC-Cmd to CPAN version 0.78
[DELTA] Changes for 0.78 Mon Apr 30 19:45:00 BST 2012 ================================================= * Use POSIX::_exit() instead of exit() in run_forked(). Reported by Mithun Ayachit [RT 76901]
Diffstat (limited to 'cpan/IPC-Cmd')
-rw-r--r--cpan/IPC-Cmd/lib/IPC/Cmd.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpan/IPC-Cmd/lib/IPC/Cmd.pm b/cpan/IPC-Cmd/lib/IPC/Cmd.pm
index 99ba7bf988..37e6d1e221 100644
--- a/cpan/IPC-Cmd/lib/IPC/Cmd.pm
+++ b/cpan/IPC-Cmd/lib/IPC/Cmd.pm
@@ -17,7 +17,7 @@ BEGIN {
$INSTANCES $ALLOW_NULL_ARGS
];
- $VERSION = '0.76';
+ $VERSION = '0.78';
$VERBOSE = 0;
$DEBUG = 0;
$WARN = 1;
@@ -529,7 +529,7 @@ sub open3_run {
#
kill(-9, $$);
- exit 1;
+ POSIX::_exit 1;
}
if ($got_sig_child) {
@@ -1046,7 +1046,7 @@ sub run_forked {
$opts->{'child_END'}->();
}
- exit $child_exit_code;
+ POSIX::_exit $child_exit_code;
}
}