tools: Need search path for uninstalled modules too.

This fixes the perl compilation failures of fullPathName.pl
that occur before the src/tools directory has been built, and
ensures that the other tools that use EPICS modules also work.
This commit is contained in:
Andrew Johnson
2010-10-26 09:27:47 -05:00
parent 01ae98d118
commit af48ed31c3
3 changed files with 3 additions and 3 deletions

View File

@@ -17,7 +17,7 @@ eval 'exec perl -S $0 ${1+"$@"}' # -*- Mode: perl -*-
use strict;
use FindBin qw($Bin);
use lib "$Bin/../../lib/perl";
use lib ("$Bin/../../lib/perl", $Bin);
use Cwd qw(cwd abs_path);
use Getopt::Std;

View File

@@ -12,7 +12,7 @@
use strict;
use FindBin qw($Bin);
use lib "$Bin/../../lib/perl";
use lib ("$Bin/../../lib/perl", $Bin);
use EPICS::Getopts;
use EPICS::Path;

View File

@@ -16,7 +16,7 @@ eval 'exec perl -S -w $0 ${1+"$@"}' # -*- Mode: perl -*-
use strict;
use FindBin qw($Bin);
use lib "$Bin/../../lib/perl";
use lib ("$Bin/../../lib/perl", $Bin);
use Getopt::Std;
use EPICS::Path;