-
-
Notifications
You must be signed in to change notification settings - Fork 572
Bundling Perl apps
probonopd edited this page Apr 20, 2013
·
1 revision
If a Perl app refuses to run, the first thing is to increase verbosity by adding the following code at the top of the Perl script:
use strict;
use warnings;
Then watch out for messages like "Can't locate ... in @INC"
Then set $PERLLIB so that Perl can find its includes.