* Makefile.in (probes.h): create from probes.d

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37649 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mrkn 2012-11-13 15:56:23 +00:00
Родитель 0c1682b304
Коммит 3dd13a1c07
2 изменённых файлов: 7 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Wed Nov 14 00:54:00 2012 Kenta Murata <mrkn@mrkn.jp>
* Makefile.in (probes.h): create from probes.d
Tue Nov 13 18:44:01 2012 Koichi Sasada <ko1@atdot.net>
* vm_insnhelper.c (vm_call_cfunc_with_frame): don't use ci after

Просмотреть файл

@ -322,9 +322,9 @@ enc/unicode/name2ctype.h: enc/unicode/name2ctype.kwd
$(Q) $(CPP) $(warnflags) $(XCFLAGS) $(CPPFLAGS) $(COUTFLAG)$@ -E $< > $@
probes.h: dmyprobes.h
@$(ECHO) translating probes $<
$(Q)if test -n '$(DTRACE)'; then\
$(DTRACE) -o $@.tmp -h -s $<; \
@$(ECHO) translating probes $(srcdir)/probes.d
$(Q)if test -n '$(DTRACE)'; then \
$(DTRACE) -o $@.tmp -h -s $(srcdir)/probes.d; \
sed -e 's/RUBY_/RUBY_DTRACE_/g' $@.tmp | sed -e 's/PROBES_H_TMP/PROBES_H/g' >$@; \
$(RM) $@.tmp; \
else \