1
0
mirror of https://github.com/fspc/gbootroot.git synced 2025-02-25 01:43:24 -05:00

This make sure that path included the Replacements dir .. to be improved more.

This commit is contained in:
freesource 2001-11-18 20:06:52 +00:00
parent d50e13b210
commit a49dcf6c0d

View File

@ -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;
}
## }