Subject: | [PATCH] Handling spaces in path to perl executable |
Hi,
I would like to propose the following patch to lib\Test\Harness.pm:
- chomp( @inc = `$perl -e "print join qq[\\n], \@INC, q[]"` );
+ chomp( @inc = `"$perl" -e "print join qq[\\n], \@INC, q[]"` );
It handles a situation when perl executable path (in $perl variable)
contains spaces.
I have tested the patch with Test-Harness-3.17 (on Win32/strawberry perl).
Thanks in advance for considering the proposed patch.
--
kmx