mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 13:04:13 +02:00
load.c: real path to load
* load.c (rb_construct_expanded_load_path): expand load paths to real paths to get rid of duplicate loading from symbolic-linked directories. [Feature #10222] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59984 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5754f15975
commit
b6d3927e16
3 changed files with 17 additions and 2 deletions
3
load.c
3
load.c
|
@ -85,7 +85,8 @@ rb_construct_expanded_load_path(enum expand_type type, int *has_relative, int *h
|
|||
if (is_string)
|
||||
rb_str_freeze(path);
|
||||
as_str = rb_get_path_check_convert(path, as_str, level);
|
||||
expanded_path = rb_file_expand_path_fast(as_str, Qnil);
|
||||
expanded_path = rb_check_realpath(Qnil, as_str);
|
||||
if (NIL_P(expanded_path)) expanded_path = as_str;
|
||||
rb_ary_push(ary, rb_fstring(expanded_path));
|
||||
}
|
||||
rb_obj_freeze(ary);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue