From 7da070bca3703c09e50ef777ae2580cf427d417e Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Thu, 23 Aug 2012 09:45:31 -0500 Subject: [PATCH] Fix bldEnvData.pl library search path It wasn't working when INSTALL_LOCATION is used. --- src/libCom/env/bldEnvData.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/libCom/env/bldEnvData.pl b/src/libCom/env/bldEnvData.pl index 0382b0904..993c36cee 100644 --- a/src/libCom/env/bldEnvData.pl +++ b/src/libCom/env/bldEnvData.pl @@ -13,7 +13,10 @@ use strict; -use lib '../../../lib/perl'; +# This program is never installed, so it can't use FindBin to get +# the path to the lib/perl directory. However it can load the +# EPICS:: modules directly from the src/tools directory instead: +use lib '../../tools'; use Getopt::Std; use File::Basename;