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

ruby-changes:36442

From: nobu <ko1@a...>
Date: Fri, 21 Nov 2014 09:10:33 +0900 (JST)
Subject: [ruby-changes:36442] nobu:r48523 (trunk): common.mk: fix dependencies

nobu	2014-11-21 09:10:25 +0900 (Fri, 21 Nov 2014)

  New Revision: 48523

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

  Log:
    common.mk: fix dependencies
    
    * common.mk (ext/ripper/ripper.c): fix dependencies for the case
      to make ripper.y and id.h under the build directory.

  Modified files:
    trunk/ChangeLog
    trunk/common.mk
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 48522)
+++ ChangeLog	(revision 48523)
@@ -1,3 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Fri Nov 21 09:10:23 2014  Nobuyoshi Nakada  <nobu@r...>
+
+	* common.mk (ext/ripper/ripper.c): fix dependencies for the case
+	  to make ripper.y and id.h under the build directory.
+
 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
Index: common.mk
===================================================================
--- common.mk	(revision 48522)
+++ common.mk	(revision 48523)
@@ -808,7 +808,8 @@ $(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="$(PWD)" RM="$(RM)"\
+		Q=$(Q) ECHO=$(ECHO) RM="$(RM)" VPATH=../.. \
+		top_srcdir=../../$(srcdir) srcdir=../../$(srcdir)/ext/ripper \
 		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/

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