diff options
author | mkanat%bugzilla.org <> | 2007-10-19 11:46:10 +0000 |
---|---|---|
committer | mkanat%bugzilla.org <> | 2007-10-19 11:46:10 +0000 |
commit | 415e32d463bbb881d991d886ddba6f859669c098 (patch) | |
tree | fd97f6e5bd6f2333f9c9dceda58f5ba226d3bc4a /config.cgi | |
parent | c6ede85fc67cefea141519c2b767cdcc600995ee (diff) | |
download | bugs-415e32d463bbb881d991d886ddba6f859669c098.tar bugs-415e32d463bbb881d991d886ddba6f859669c098.tar.gz bugs-415e32d463bbb881d991d886ddba6f859669c098.tar.bz2 bugs-415e32d463bbb881d991d886ddba6f859669c098.tar.xz bugs-415e32d463bbb881d991d886ddba6f859669c098.zip |
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 'config.cgi')
-rwxr-xr-x | config.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.cgi b/config.cgi index 84bcb9038..ad8dbf0fe 100755 --- a/config.cgi +++ b/config.cgi @@ -28,7 +28,7 @@ # Make it harder for us to do dangerous things in Perl. use strict; -use lib qw(.); +use lib qw(. lib); use Bugzilla; use Bugzilla::Constants; |