diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-02-26 14:42:11 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-02-26 14:42:11 +0000 |
commit | 727f5251088745a9acad9ea3f7272f01d9767a80 () | |
tree | f38d0e1e65ee623f588e47b9d484f4f7d292a11b /tool/runruby.rb | |
parent | 68c062b1f06f384df91a198e69495f185b12e334 (diff) |
runruby.rb: use File::PATH_SEPARATOR
* tool/runruby.rb: use File::PATH_SEPARATOR as DYLD_INSERT_LIBRARIES is colon-separated list. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@49762 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rwxr-xr-x | tool/runruby.rb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ if File.file?(libruby_so) e ||= "LD_PRELOAD" if /linux/ =~ RUBY_PLATFORM end if e - env[e] = [libruby_so, ENV[e]].compact.join(' ') end end |