Skip to content
Snippets Groups Projects
Commit 02c977ac authored by Guillaume ROUSSE's avatar Guillaume ROUSSE
Browse files

use relative path for use lib pragma

parent e64552a3
Branches
Tags
No related merge requests found
...@@ -9,8 +9,7 @@ ...@@ -9,8 +9,7 @@
use strict; use strict;
use utf8; use utf8;
use lib "/opt/testidp/IdPAccountManager/lib",; use lib qw(lib conf);
use lib "/opt/testidp/IdPAccountManager/conf";
use Getopt::Long qw(:config auto_help); use Getopt::Long qw(:config auto_help);
use POSIX; use POSIX;
......
...@@ -9,8 +9,7 @@ ...@@ -9,8 +9,7 @@
use strict vars; use strict vars;
use utf8; use utf8;
use lib "/opt/testidp/IdPAccountManager/lib"; use lib qw(lib conf);
use lib "/opt/testidp/IdPAccountManager/conf";
use CGI; use CGI;
use CGI::Cookie; use CGI::Cookie;
......
#!/usr/bin/perl #!/usr/bin/perl
## Initialize Rose::DB code given the DB structure ## Initialize Rose::DB code given the DB structure
use lib "/opt/testidp/IdPAccountManager/lib"; use lib qw(lib conf);
use lib "/opt/testidp/IdPAccountManager/conf";
use Rose::DB; use Rose::DB;
use Rose::DB::Object::Loader; use Rose::DB::Object::Loader;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment