Hi James,

> My bugzilla.pm already has this block:
> 
>     if ($self->is_version_latest()) {
>         unshift @INC, $self->installation_directory() . "/lib";
>     }

As Michal suggested, can you try the following (or hardcode the path) ?

if ($self->is_version_latest()) {
         use lib $self->installation_directory() . "/lib";
         #use lib qw(my_path_to_bugzilla/lib);
}

Attachment: signature.asc
Description: This is a digitally signed message part

_______________________________________________
scmbug-users mailing list
[email protected]
http://lists.mkgnu.net/cgi-bin/mailman/listinfo/scmbug-users

Reply via email to