Scmbug error 79: Package 'Bugzilla' not foundin installation

WH Lubberhuizen (INSPIRO) wessel.lubberhuizen at gmail.com
Tue Feb 19 21:49:31 UTC 2008


This problem may be caused by an old Bugzilla installation residing
somewhere in your perl include path.

Because scmbug appends the Bugzilla installation directory to the
include path, it may try to load the old package.
In my case, I wanted to run different Bugzilla versions next to
eachother. So applied the following patch:

change the line 114 of Daemon/Bugzilla.pm
from:
  push @INC,  $self->installation_directory();
to:
  unshift @INC,  $self->installation_directory();

Hope it works!

Wessel
_______________________________________________
dev-apps-bugzilla mailing list
dev-apps-bugzilla at lists.mozilla.org
https://lists.mozilla.org/listinfo/dev-apps-bugzilla



More information about the developers mailing list