LP 851915: Remove references to /openils/lib/perl5
authorDan Scott <dscott@laurentian.ca>
Fri, 16 Sep 2011 13:59:54 +0000 (09:59 -0400)
committerGalen Charlton <gmc@esilibrary.com>
Fri, 16 Sep 2011 14:20:18 +0000 (10:20 -0400)
To prevent old versions of the OpenSRF and Evergreen Perl modules from
conflicting with the new versions of these modules (which are now
located in the default system Perl package directories), remove
references to them.

Also, O:W:AddedContent contains an old reference to a distro-specific
Perl directory that we can clean up at the same time.

Signed-off-by: Dan Scott <dscott@laurentian.ca>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
Open-ILS/examples/apache/startup.pl
Open-ILS/src/extras/import/direct_ingest.pl
Open-ILS/src/extras/import/direct_loader.pl
Open-ILS/src/extras/import/pg_loader.pl
Open-ILS/src/perlmods/lib/OpenILS/WWW/AddedContent.pm

index 613ffa6..ee9bb42 100755 (executable)
@@ -1,5 +1,4 @@
 #!/usr/bin/perl
-use lib qw( /openils/lib/perl5 ); 
 use OpenILS::WWW::Exporter qw( /openils/conf/opensrf_core.xml );
 use OpenILS::WWW::SuperCat qw( /openils/conf/opensrf_core.xml );
 use OpenILS::WWW::AddedContent qw( /openils/conf/opensrf_core.xml );
index 45df729..e25193e 100755 (executable)
@@ -2,8 +2,6 @@
 use strict;
 use warnings;
 
-use lib '/openils/lib/perl5/';
-
 use OpenSRF::System;
 use OpenSRF::EX qw/:try/;
 use OpenSRF::AppSession;
index 02c3f36..4a3dd0b 100755 (executable)
@@ -2,8 +2,6 @@
 use strict;
 use warnings;
 
-use lib '/openils/lib/perl5/';
-
 use OpenSRF::System;
 use OpenSRF::EX qw/:try/;
 use OpenSRF::AppSession;
index cde91de..f469d15 100755 (executable)
@@ -1,8 +1,6 @@
 #!/usr/bin/perl
 use strict;
 
-use lib '/openils/lib/perl5/';
-
 use OpenSRF::System;
 use OpenSRF::EX qw/:try/;
 use OpenSRF::Utils::SettingsClient;
index f4c816b..8701098 100644 (file)
@@ -1,8 +1,6 @@
 package OpenILS::WWW::AddedContent;
 use strict; use warnings;
 
-use lib qw(/usr/lib/perl5/Bundle/);
-
 use CGI;
 use Apache2::Log;
 use Apache2::Const -compile => qw(OK REDIRECT DECLINED NOT_FOUND :log);