in reply to unexpected use lib behavior

Are you forgetting to "use survey"?

andyford
or non-Perl: Andy Ford

Replies are listed 'Best First'.
Re^2: unexpected use lib behavior
by davidj (Priest) on Oct 23, 2006 at 09:51 UTC
    I am not forgetting. The problem happens only when I take the module out of an app subdirectory and change the corresponding use lib;directory.
    #!/usr/bin/perl -T use strict; use warnings; #use lib "/var/www/cgi-bin/survey/lib"; use lib "/home/davidj/perl/lib/survey"; use CGI qw/standard/; use survey;