Subject: | Wrong perl used in t/compile.t |
Using a hardcoded "perl" in t/compile.t in this line is wrong if for building+testing another perl than the first perl in user's PATH is used:
$output = `perl -I "$libpath" -c $_ `;
Better to use $^X instead.