Update IPC::Cmd to CPAN version 0.50
Chris Williams [Mon, 7 Sep 2009 15:22:13 +0000 (16:22 +0100)]
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]

ext/IPC-Cmd/lib/IPC/Cmd.pm
ext/IPC-Cmd/t/01_IPC-Cmd.t

index f195acd..81d85ca 100644 (file)
@@ -16,7 +16,7 @@ BEGIN {
                         $USE_IPC_RUN $USE_IPC_OPEN3 $WARN
                     ];
 
-    $VERSION        = '0.48';
+    $VERSION        = '0.50';
     $VERBOSE        = 0;
     $DEBUG          = 0;
     $WARN           = 1;
index e2b58d1..eca515e 100644 (file)
@@ -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] );
 }