On Mon, 2011-02-14 at 08:20 +0100, Thorsten Schöning wrote:

> How does it include the lib folder in current code? It should
> with use lib:

It currently issues:

  if ($self->is_version_up_to_3_4() || $self->is_version_latest()) {
        unshift @INC, $self->installation_directory() . "/lib";
    }

Achar, could you try the following patch?

===================================================================
RCS
file: /projects/scmbug/cvsroot/system/src/lib/product/Daemon/Bugzilla.pm.in,v
retrieving revision 1.86
diff -u -r1.86 Bugzilla.pm.in
--- Bugzilla.pm.in 27 Sep 2010 18:59:23 -0000 1.86
+++ Bugzilla.pm.in 15 Feb 2011 00:50:05 -0000
@@ -139,7 +139,7 @@
     chdir $self->installation_directory();
 
     if ($self->is_version_up_to_3_4() || $self->is_version_latest()) {
-        unshift @INC, $self->installation_directory() . "/lib";
+        use lib $self->installation_directory();
     }
 
     #

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