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" );