Browse Source

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

master
freesource 23 years ago
parent
commit
a49dcf6c0d
  1. 9
      BootRoot/Yard.pm

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

Loading…
Cancel
Save