ruby-changes:36441
From: naruse <ko1@a...>
Date: Fri, 21 Nov 2014 08:45:59 +0900 (JST)
Subject: [ruby-changes:36441] naruse:r48522 (trunk): * common.mk (ext/ripper/ripper.c): id.h in VPATH may exist in the build
naruse 2014-11-21 08:45:44 +0900 (Fri, 21 Nov 2014) New Revision: 48522 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=48522 Log: * common.mk (ext/ripper/ripper.c): id.h in VPATH may exist in the build directory. * common.mk (ext/ripper/ripper.c): $(RM) was not defined. Modified files: trunk/ChangeLog trunk/common.mk Index: ChangeLog =================================================================== --- ChangeLog (revision 48521) +++ ChangeLog (revision 48522) @@ -1,3 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1 +Fri Nov 21 08:42:21 2014 NARUSE, Yui <naruse@r...> + + * common.mk (ext/ripper/ripper.c): id.h in VPATH may exist in the build + directory. + + * common.mk (ext/ripper/ripper.c): $(RM) was not defined. + Fri Nov 21 00:36:09 2014 NAKAMURA Usaku <usa@r...> * ext/openssl/lib/openssl/x509.rb Index: common.mk =================================================================== --- common.mk (revision 48521) +++ common.mk (revision 48522) @@ -808,7 +808,7 @@ $(REVISION_H): $(srcdir)/version.h $(src https://github.com/ruby/ruby/blob/trunk/common.mk#L808 $(srcdir)/ext/ripper/ripper.c: parse.y id.h $(ECHO) generating $@ $(Q) $(CHDIR) $(@D) && $(exec) $(MAKE) -f depend $(MFLAGS) \ - Q=$(Q) ECHO=$(ECHO) top_srcdir=../.. srcdir=. VPATH=../.. \ + Q=$(Q) ECHO=$(ECHO) top_srcdir=../.. srcdir=. VPATH="$(PWD)" RM="$(RM)"\ RUBY="$(BASERUBY)" PATH_SEPARATOR="$(PATH_SEPARATOR)" $(srcdir)/ext/rbconfig/sizeof/sizes.c: $(srcdir)/ext/rbconfig/sizeof/depend \ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/