diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-11-22 09:03:43 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-11-22 09:03:43 +0000 |
commit | 1dec7384d1629eb1b45252294c7e1a7009f148bc (patch) | |
tree | 01dcdf787c2c711658de6cd779cd39247b022ff1 /Makefile.in | |
parent | 59c41661a7de1c4eab03023fa463792f7be0e944 (diff) | |
download | ruby-1dec7384d1629eb1b45252294c7e1a7009f148bc.tar.gz |
* Makefile.in (probes.o): add -C to ignore #include in probes.d.
* probes.d: include vm_opts.h instead of vm_core.h.
* vm_opts.h (VM_COLLECT_USAGE_DETAILS): move definition from vm_core.h.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index aae4d061ba..42cc95132e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -350,7 +350,7 @@ probes.@OBJEXT@: $(srcdir)/probes.d fi; \ touch "$$stamp" $(RM) $@ - $(Q) $(DTRACE) -G -s $(srcdir)/probes.d -o $@ $(DTRACE_DEPENDENT_OBJS) + $(Q) $(DTRACE) -G -C $(INCFLAGS) -s $(srcdir)/probes.d -o $@ $(DTRACE_DEPENDENT_OBJS) # DTrace static library hacks described here: # http://mail.opensolaris.org/pipermail/dtrace-discuss/2005-August/000207.html |