summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-03-22 23:14:31 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2020-03-22 23:14:32 -0700
commit3bd7d5617f9bf703d5199d5c091694594bbb5fc0 (patch)
treee1e2931df0cc6f2edf2c0ead474ae6616a3020bd
parentd578f1d3ea317ef8d899d0fd9a4440ba67821d17 (diff)
Make the first argument slightly more robust
-rw-r--r--common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mk b/common.mk
index 8813037c67..46c2791523 100644
--- a/common.mk
+++ b/common.mk
@@ -229,7 +229,7 @@ MJIT_WITHOUT_TABS=true
$(TIMESTAMPDIR)/$(MJIT_HEADER:.h=)$(MJIT_HEADER_SUFFIX).time: probes.h vm.$(OBJEXT) \
$(TIMESTAMPDIR)/$(arch)/.time $(srcdir)/tool/run_without_tabs.rb
$(ECHO) building $(@F:.time=.h)
- $(Q) $(BASERUBY) $(srcdir)/tool/run_without_tabs.rb $(MJIT_WITHOUT_TABS) \
+ $(Q) $(BASERUBY) $(srcdir)/tool/run_without_tabs.rb "$(MJIT_WITHOUT_TABS)" \
$(CPP) -DMJIT_HEADER $(MJIT_HEADER_FLAGS) $(CFLAGS) $(XCFLAGS) $(CPPFLAGS) $(srcdir)/vm.c $(CPPOUTFLAG)$(@F:.time=.h).new
$(Q) $(IFCHANGE) "--timestamp=$@" $(@F:.time=.h) $(@F:.time=.h).new