podToHtml: Add bootstrap search path for EPICS::PodHtml

This commit is contained in:
Andrew Johnson
2020-04-17 16:42:18 -05:00
parent 841effe9ee
commit 648589e6ab
+5 -1
View File
@@ -9,8 +9,12 @@
use strict;
use warnings;
# To find the EPICS::PodHtml module used below we need to add our lib/perl to
# the lib search path. If the script is running from the src/tools directory
# before everything has been installed though, the search path must include
# our source directory (i.e. $Bin), so we add both here.
use FindBin qw($Bin);
use lib "$Bin/../../lib/perl";
use lib ("$Bin/../../lib/perl", $Bin);
use Getopt::Std;
use EPICS::PodHtml;