ruby-changes:28250
From: naruse <ko1@a...>
Date: Mon, 15 Apr 2013 10:24:47 +0900 (JST)
Subject: [ruby-changes:28250] naruse:r40302 (trunk): * ext/coverage/depend: fix id.h place as r40283.
naruse 2013-04-15 10:24:37 +0900 (Mon, 15 Apr 2013) New Revision: 40302 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=40302 Log: * ext/coverage/depend: fix id.h place as r40283. * ext/coverage/extconf.rb: add topdir and topsrcdir to VPATH. Modified files: trunk/ChangeLog trunk/ext/coverage/depend trunk/ext/coverage/extconf.rb Index: ChangeLog =================================================================== --- ChangeLog (revision 40301) +++ ChangeLog (revision 40302) @@ -1,3 +1,9 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Mon Apr 15 10:23:39 2013 NARUSE, Yui <naruse@r...> + + * ext/coverage/depend: fix id.h place as r40283. + + * ext/coverage/extconf.rb: add topdir and topsrcdir to VPATH. + Sun Apr 14 19:46:14 2013 Tanaka Akira <akr@f...> * ext/-test-/debug/depend: New file. Index: ext/coverage/depend =================================================================== --- ext/coverage/depend (revision 40301) +++ ext/coverage/depend (revision 40302) @@ -3,7 +3,7 @@ $(OBJS): $(HDRS) $(ruby_headers) \ https://github.com/ruby/ruby/blob/trunk/ext/coverage/depend#L3 $(top_srcdir)/node.h \ $(top_srcdir)/vm_debug.h \ $(top_srcdir)/vm_opts.h \ - $(top_srcdir)/id.h \ + {$(VPATH)}id.h \ $(top_srcdir)/method.h \ $(top_srcdir)/ruby_atomic.h \ $(top_srcdir)/thread_pthread.h Index: ext/coverage/extconf.rb =================================================================== --- ext/coverage/extconf.rb (revision 40301) +++ ext/coverage/extconf.rb (revision 40302) @@ -1,3 +1,4 @@ https://github.com/ruby/ruby/blob/trunk/ext/coverage/extconf.rb#L1 require 'mkmf' +$VPATH << '$(topdir)' << '$(top_srcdir)' $INCFLAGS << " -I$(topdir) -I$(top_srcdir)" create_makefile('coverage') -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/