From: Chris Williams Date: Mon, 7 Sep 2009 15:22:13 +0000 (+0100) Subject: Update IPC::Cmd to CPAN version 0.50 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=47fe32517be8721f2476eeb9a015710befed8b38;p=p5sagit%2Fp5-mst-13.2.git Update IPC::Cmd to CPAN version 0.50 Changes for 0.50 Mon Sep 7 16:17:32 BST 2009 ================================================= * Apply patch from Steve Hay that fixes a test failure in core since the move from lib/ to ext/ [RT #49490] --- diff --git a/ext/IPC-Cmd/lib/IPC/Cmd.pm b/ext/IPC-Cmd/lib/IPC/Cmd.pm index f195acd..81d85ca 100644 --- a/ext/IPC-Cmd/lib/IPC/Cmd.pm +++ b/ext/IPC-Cmd/lib/IPC/Cmd.pm @@ -16,7 +16,7 @@ BEGIN { $USE_IPC_RUN $USE_IPC_OPEN3 $WARN ]; - $VERSION = '0.48'; + $VERSION = '0.50'; $VERBOSE = 0; $DEBUG = 0; $WARN = 1; diff --git a/ext/IPC-Cmd/t/01_IPC-Cmd.t b/ext/IPC-Cmd/t/01_IPC-Cmd.t index e2b58d1..eca515e 100644 --- a/ext/IPC-Cmd/t/01_IPC-Cmd.t +++ b/ext/IPC-Cmd/t/01_IPC-Cmd.t @@ -45,7 +45,7 @@ push @Prefs, [ 0, 0 ], [ 0, 0 ]; ### can_run tests { - ok( can_run('perl'), q[Found 'perl' in your path] ); + ok( can_run("$^X"), q[Found 'perl' in your path] ); ok( !can_run('10283lkjfdalskfjaf'), q[Not found non-existant binary] ); }