Skip to content

Commit

Permalink
Preserve the directory structure under tool/ruby_vm/views
Browse files Browse the repository at this point in the history
for nested target directories
  • Loading branch information
k0kubun committed Sep 18, 2022
1 parent 0e816e6 commit 62ec621
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion template/Makefile.in
Expand Up @@ -505,7 +505,7 @@ clean-local::
-$(Q) $(RMDIRS) $(MJIT_HEADER_INSTALL_DIR) $(MJIT_HEADER_BUILD_DIR) $(TIMESTAMPDIR) 2> $(NULL) || $(NULLCMD)

main: $(srcdir)/lib/mjit/instruction.rb
$(srcdir)/lib/mjit/instruction.rb: $(tooldir)/ruby_vm/views/instruction.rb.erb $(srcdir)/insns.def
$(srcdir)/lib/mjit/instruction.rb: $(tooldir)/ruby_vm/views/lib/mjit/instruction.rb.erb $(srcdir)/insns.def
$(ECHO) generating $@
$(Q) $(BASERUBY) -Ku $(tooldir)/insns2vm.rb $(INSNS2VMOPT) $@

Expand Down
3 changes: 2 additions & 1 deletion tool/ruby_vm/helpers/dumper.rb
Expand Up @@ -25,10 +25,11 @@ def new_binding
end

def new_erb spec
srcdir = Pathname.new(__dir__).parent.parent.parent
path = Pathname.new(__FILE__)
path = (path.relative_path_from(Pathname.pwd) rescue path).dirname
path += '../views'
path += File.basename(spec)
path += Pathname.pwd.join(spec).to_s.sub("#{srcdir}/", '')
src = path.read mode: 'rt:utf-8:utf-8'
rescue Errno::ENOENT
raise "don't know how to generate #{path}"
Expand Down
File renamed without changes.

0 comments on commit 62ec621

Please sign in to comment.