Skip Menu |

This queue is for tickets about the Module-Build CPAN distribution.

Report information
The Basics
Id: 75820
Status: new
Priority: 0/
Queue: Module-Build

People
Owner: Nobody in particular
Requestors: sferencik [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 0.40
Fixed in: (no value)



Subject: quote spaces in the perl.exe path in t/actions/installdeps.t
Related to #75814: there is also a raw $^X in t/actions/installdeps.t, causing a problem when perl is under "c:\program files". Patch included. Thanks, Sam Left file: C:\Users\ferencis\AppData\Local\Temp\p4v\PRGDWM355382_qaperforce_1666 \depot\QA\Toolbox\main.br\CPAN\Module-Build\0.40 \src\t\actions\installdeps#1.t Right file: C:\p4_ws\0toolbox\main.br\CPAN\Module-Build\0.40 \src\t\actions\installdeps.t 23c23 < cpan_client => $^X . ' -le print($_)for($^X,@ARGV)', --- Show quoted text
> cpan_client => qq("$^X") . ' -le print($_)for($^X,@ARGV)',
30c30 < like( $mb->cpan_client, qr/^\Q$^X\E/, "cpan_client is mocked with perl" ); --- Show quoted text
> like( $mb->cpan_client, qr/^"\Q$^X\E"/, "cpan_client is mocked with
perl" );