diff --git a/src/tools/EPICS/Path.pm b/src/tools/EPICS/Path.pm index ba6ad4a9b..83a91efb3 100644 --- a/src/tools/EPICS/Path.pm +++ b/src/tools/EPICS/Path.pm @@ -123,6 +123,7 @@ sub AbsPath { # Now calculate the absolute path my $abs = File::Spec->rel2abs($path, abs_path($cwd)); + $abs = abs_path($abs) if -e $abs; return LocalPath($abs); }