mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Install all file trees for lldb [ci skip]
It is no longer single lldb_cruby.py only.
This commit is contained in:
parent
d12fce7af3
commit
247d598477
1 changed files with 7 additions and 1 deletions
|
@ -686,7 +686,13 @@ install?(:dbg, :nodefault) do
|
|||
RbConfig.expand(File.read(src), conf)
|
||||
}
|
||||
end
|
||||
install File.join(srcdir, "misc/lldb_cruby.py"), File.join(rubylibdir, "lldb_cruby.py")
|
||||
Dir.glob(File.join(srcdir, "misc/lldb_*")) do |src|
|
||||
if File.directory?(src)
|
||||
install_recursive src, File.join(rubylibdir, File.basename(src))
|
||||
else
|
||||
install src, rubylibdir
|
||||
end
|
||||
end
|
||||
install File.join(srcdir, ".gdbinit"), File.join(rubylibdir, "gdbinit")
|
||||
if $debug_symbols
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue