[前][次][番号順一覧][スレッド一覧]

ruby-changes:41203

From: naruse <ko1@a...>
Date: Thu, 24 Dec 2015 16:21:39 +0900 (JST)
Subject: [ruby-changes:41203] naruse:r53275 (trunk): * common.mk (ripper.c): r50045 wrongly replace $(PWD) with ../..

naruse	2015-12-24 16:21:28 +0900 (Thu, 24 Dec 2015)

  New Revision: 53275

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=53275

  Log:
    * common.mk (ripper.c): r50045 wrongly replace $(PWD) with ../..
      It is the top of build directory, not topsrcdir.

  Modified files:
    trunk/ChangeLog
    trunk/common.mk
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 53274)
+++ ChangeLog	(revision 53275)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Thu Dec 24 16:13:05 2015  NARUSE, Yui  <naruse@r...>
+
+	* common.mk (ripper.c): r50045 wrongly replace $(PWD) with ../..
+	  It is the top of build directory, not topsrcdir.
+
 Thu Dec 24 15:02:42 2015  sorah (Shota Fukumori)  <her@s...>
 
 	* tool/vcs.rb (IO.popen): Refactor. Avoid assigning in condition.
Index: common.mk
===================================================================
--- common.mk	(revision 53274)
+++ common.mk	(revision 53275)
@@ -872,7 +872,7 @@ $(srcdir)/ext/ripper/ripper.c: parse.y i https://github.com/ruby/ruby/blob/trunk/common.mk#L872
 	$(Q) $(CHDIR) $(@D) && \
 	sed /AUTOGENERATED/q depend | \
 	$(exec) $(MAKE) -f - $(MFLAGS) \
-		Q=$(Q) ECHO=$(ECHO) RM="$(RM)" top_srcdir=../.. srcdir=. VPATH=../.. \
+		Q=$(Q) ECHO=$(ECHO) RM="$(RM)" top_srcdir=../.. srcdir=. VPATH="$(PWD)" \
 		RUBY="$(BASERUBY)" PATH_SEPARATOR="$(PATH_SEPARATOR)"
 
 $(srcdir)/ext/json/parser/parser.c: $(srcdir)/ext/json/parser/parser.rl

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]