diff options
author | Struan Donald <struan@exo.org.uk> | 2012-01-09 13:51:31 +0000 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-01-09 13:51:31 +0000 |
commit | 29ac425ac0e99ab82a9bfa68fcacf085c37dcbbd (patch) | |
tree | b4de7b99c5fe7f9df948722c8723404af2322f9e | |
parent | 138b3840e12fc03b2829c3e13f0f62e36406c7c0 (diff) |
use local directory for library as carton defaults to this
-rwxr-xr-x | setenv.pl | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -17,11 +17,10 @@ BEGIN { # add the local perllibs too # Set the environment for the FixMyStreet project # Add the lib/perl5 in perl-external so that we can load local::lib from there -use lib "$root/perl-external/lib/perl5"; +use lib "$root/local/lib/perl5"; # Add the perl-external dirs properly using local::lib -use local::lib "$root/perl-external"; -use local::lib "$root/perl-external/local-lib"; +use local::lib "$root/local"; use lib "$root/commonlib/perllib"; use lib "$root/perllib"; |