Subject: | Test fails when $^X contains spaces |
t/001_compile.t fails when $^X contains spaces. To fix, either change
ok !system("$^X Makefile.PL"), "ran Makefile.PL";
to
ok !system("\"$^X\" Makefile.PL"), "ran Makefile.PL";
or remove the line entirely (it's not clear to me how one could have gotten this far without successfully running Makefile.PL)