in reply to ADD directory to @INC using a string variable

Try use lib hardcoded_path_name;. The use directives are executed at compile time, before the variables used in the code are set.

Else you could set your variable in a BEGIN block, just prior to using it.

Replies are listed 'Best First'.
Re^2: ADD directory to @INC using a string variable
by sid9559 (Novice) on Sep 23, 2013 at 15:32 UTC
    I cannot use a hardcoded path, it is a varying path based on the user. $path = user's cwd/somepath/filename.pm Regards, Siddharth
      use lib './somepath/';
      or
      BEGIN { my $path = 'somepath'; push @INC, $path; }
      or why not just let the user set his/her PERL5LIB environment variable?