On Mon, Feb 16, 2015 at 11:10:35AM +0530, Bipin Dubey wrote: > [root@localhost ~]# perl -IC4/SIP/ -MILS > /usr/share/koha/lib/C4/SIP/SIPServer.pm /etc/koha/SIPconfig.xml > > *And getting following error :-* > > [root@localhost ~]# perl -IC4/SIP/ -MILS > /usr/share/koha/lib/C4/SIP/SIPServer.pm /etc/koha/SIPconfig.xml > Can't locate ILS.pm in @INC (@INC contains: C4/SIP/ /usr/local/lib64/perl5 > /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl > /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .). > BEGIN failed--compilation aborted.
Perl needs the path to the ILS module in its include list. In the command you are using it should be -I./C4/SIP rather than -IC4/SIP C. -- Colin Campbell Chief Software Engineer, PTFS Europe Limited Content Management and Library Solutions +44 (0) 800 756 6803 (phone) +44 (0) 7759 633626 (mobile) [email protected] skype: colin_campbell2 http://www.ptfs-europe.com _______________________________________________ Koha mailing list http://koha-community.org [email protected] http://lists.katipo.co.nz/mailman/listinfo/koha

