diff options
author | mkanat%bugzilla.org <> | 2007-10-19 13:46:10 +0200 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2007-10-19 13:46:10 +0200 |
commit | 415e32d463bbb881d991d886ddba6f859669c098 (patch) | |
tree | fd97f6e5bd6f2333f9c9dceda58f5ba226d3bc4a /xmlrpc.cgi | |
parent | c6ede85fc67cefea141519c2b767cdcc600995ee (diff) | |
download | bugzilla-415e32d463bbb881d991d886ddba6f859669c098.tar.gz bugzilla-415e32d463bbb881d991d886ddba6f859669c098.tar.xz |
Bug 399954: Make Bugzilla able to hold its dependencies in a local directory
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=LpSolit
Diffstat (limited to 'xmlrpc.cgi')
-rwxr-xr-x | xmlrpc.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlrpc.cgi b/xmlrpc.cgi index c17cab86c..227815d26 100755 --- a/xmlrpc.cgi +++ b/xmlrpc.cgi @@ -16,7 +16,7 @@ # Contributor(s): Marc Schumann <wurblzap@gmail.com> use strict; -use lib qw(.); +use lib qw(. lib); use Bugzilla; use Bugzilla::Constants; |