lf_ice.pl: fixes library paths to be consistent with lf_icemod

This commit is contained in:
Jed Reynolds
2018-12-03 11:27:00 -08:00
parent 98fec34ce3
commit 2cc5a82ce0

View File

@@ -17,10 +17,12 @@ $SIG{ __WARN__ } = sub { Carp::confess( @_ ) };
$| = 1;
if ( -d "./LANforge" ) {
use lib ".";
use lib "./LANforge";
}
elsif ( -d "/home/lanforge/scripts") {
elsif ( -d "/home/lanforge/scripts/LANforge") {
use lib "/home/lanforge/scripts";
use lib "/home/lanforge/scripts/LANforge";
}
use LANforge::Endpoint;
use LANforge::Port;