diff --git a/BootRoot/Yard.pm b/BootRoot/Yard.pm index 9a35a8c..590b0d4 100644 --- a/BootRoot/Yard.pm +++ b/BootRoot/Yard.pm @@ -1544,7 +1544,14 @@ sub find_file_in_path { } ##info(1, "Using search path:\n", join(" ", @pathlist), "\n"); ## } - @path = @pathlist; + + if ( @path ) { + push(@path,@pathlist); + } + else { + @path = @pathlist; + } + ## }