summaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
author卜部昌平 <shyouhei@ruby-lang.org>2020-05-09 22:39:58 +0900
committer卜部昌平 <shyouhei@ruby-lang.org>2020-05-10 16:51:10 +0900
commit50a6d292c0ebfc2f35ee66efbb3b7ea44d5a0f94 (patch)
tree50fce0c69818f80dcd3077e7fc1c7761007cb825 /common.mk
parent4fca592e8c707c76e8afea2a0b5dd4d17e97cd8f (diff)
nmake doesn't understand $<
Fix MSVC build error.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3097
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mk b/common.mk
index b428a4deff..a6b10080f6 100644
--- a/common.mk
+++ b/common.mk
@@ -1087,7 +1087,7 @@ known_errors.inc: $(srcdir)/template/known_errors.inc.tmpl $(srcdir)/defs/known_
vm_call_iseq_optimized.inc: $(srcdir)/template/call_iseq_optimized.inc.tmpl
$(ECHO) generating $@
- $(Q) $(BASERUBY) $(tooldir)/generic_erb.rb -c -o $@ $<
+ $(Q) $(BASERUBY) $(tooldir)/generic_erb.rb -c -o $@ $(srcdir)/template/call_iseq_optimized.inc.tmpl
$(MINIPRELUDE_C): $(COMPILE_PRELUDE) $(BUILTIN_RB_SRCS)
$(ECHO) generating $@