Subject: | Using system perl instead of running perl |
Build.PL contains:
system("perl -Ilib script/gen_class_pod.pl");
This calls the first perl in the $PATH, usually the system perl, not
necessarily the one we're running under. Running perl would be $^X which
normally is good enough.
Thanks&&Regards,