ncarver;278613 Wrote: > > How does one get Perl to search in /opt/squeezecenter first? I am > rather surprised this isn't set up already given that the tar version > is supposed to have all the needed modules.
Thats tricky, and why I think /opt is silly (it gets unruly very quickly when you have tons of junk in /opt and need to add /opt/foo/bin:/opt/bar/bin:/opt/foo/sbin:/opt/bar/sbin type junk to $PATH, and similar junk to ldconfig and tons of other stuff. I'm a usr/local guy. What perl thinks is its path: perl -e 'print join ":", @INC' Look at wherever your bootstrap.pm file ended up in the /opt system.. that's where the paths are further mangled to handle plugins and such, and where you'll need to insert your own changes so it looks in /opt/squeezecenter/share/perl5 or whatever it is... -- snarlydwarf ------------------------------------------------------------------------ snarlydwarf's Profile: http://forums.slimdevices.com/member.php?userid=1179 View this thread: http://forums.slimdevices.com/showthread.php?t=44610 _______________________________________________ unix mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/unix
