ruby-changes:25617
From: nobu <ko1@a...>
Date: Fri, 16 Nov 2012 15:42:51 +0900 (JST)
Subject: [ruby-changes:25617] nobu:r37674 (trunk): Makefile.in: probes.h
nobu 2012-11-16 15:42:38 +0900 (Fri, 16 Nov 2012) New Revision: 37674 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=37674 Log: Makefile.in: probes.h * Makefile.in, win32/Makefile.sub (probes.h): fix copying dmyprobes.h path when outplace-build. Modified files: trunk/ChangeLog trunk/Makefile.in trunk/win32/Makefile.sub Index: ChangeLog =================================================================== --- ChangeLog (revision 37673) +++ ChangeLog (revision 37674) @@ -1,3 +1,8 @@ +Fri Nov 16 15:42:36 2012 Nobuyoshi Nakada <nobu@r...> + + * Makefile.in, win32/Makefile.sub (probes.h): fix copying dmyprobes.h + path when outplace-build. + Fri Nov 16 15:27:36 2012 Masaki Matsushita <glass.saga@g...> * lib/net/pop.rb (POP3.certs): fix typo in comment. Index: win32/Makefile.sub =================================================================== --- win32/Makefile.sub (revision 37673) +++ win32/Makefile.sub (revision 37674) @@ -1049,7 +1049,8 @@ copy $(?:/=\) $@ probes.h: dmyprobes.h - copy dmyprobes.h probes.h + @$(ECHO) copying probes.h + $(Q) $(CP) $(srcdir)\dmyprobes.h probes.h enc/unicode/name2ctype.h: {$(srcdir)}enc/unicode/name2ctype.h.blt @if not exist $(@D:/=\) md $(@D:/=\) Index: Makefile.in =================================================================== --- Makefile.in (revision 37673) +++ Makefile.in (revision 37674) @@ -328,7 +328,7 @@ sed -e 's/RUBY_/RUBY_DTRACE_/g' $@.tmp | sed -e 's/PROBES_H_TMP/PROBES_H/g' >$@; \ $(RM) $@.tmp; \ else \ - $(CP) dmyprobes.h probes.h; \ + $(CP) $(srcdir)/dmyprobes.h probes.h; \ fi clean-local:: -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/