Install databaseModuleDirs.pm into bin/<host>

Adjust all scripts to use it from there.
Host arch's may use different absolute paths to the same Base directory,
so they can't share a single copy of that module.
This commit is contained in:
Andrew Johnson
2017-12-06 22:09:49 -06:00
parent 7d105aec9e
commit f44bfd897e
8 changed files with 19 additions and 14 deletions

View File

@@ -8,8 +8,9 @@
#*************************************************************************
use FindBin qw($Bin);
use lib "$Bin/../../lib/perl";
use lib ($Bin, "$Bin/../../lib/perl");
use databaseModuleDirs;
no lib $Bin;
use EPICS::Getopts;
use File::Basename;