From 2c33712dc066463ab9741a009e56d9a5c2ffedf6 Mon Sep 17 00:00:00 2001 From: Dylan Hardison Date: Tue, 23 Feb 2016 16:23:20 -0500 Subject: Bug 1246528 - Use Makefile.PL and allow Bugzilla use cpanm-compatible local dependencies r=dkl,a=dylan --- app.psgi | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'app.psgi') diff --git a/app.psgi b/app.psgi index c04359fb1..c60d1e782 100644 --- a/app.psgi +++ b/app.psgi @@ -11,9 +11,14 @@ use strict; use warnings; use File::Basename; -use lib dirname(__FILE__); +use File::Spec; +BEGIN { + require lib; + my $dir = dirname(__FILE__); + lib->import($dir, File::Spec->catdir($dir, "lib"), File::Spec->catdir($dir, qw(local lib perl5))); +} + use Bugzilla::Constants (); -use lib Bugzilla::Constants::bz_locations()->{ext_libpath}; use Plack; use Plack::Builder; -- cgit v1.2.3-24-g4f1b