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

ruby-changes:38873

From: nobu <ko1@a...>
Date: Thu, 18 Jun 2015 22:35:57 +0900 (JST)
Subject: [ruby-changes:38873] nobu:r50954 (trunk): common.mk: reorder args for ENC_MK

nobu	2015-06-18 22:35:47 +0900 (Thu, 18 Jun 2015)

  New Revision: 50954

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

  Log:
    common.mk: reorder args for ENC_MK
    
    * common.mk (ENC_MK): reorder $(ENCS) before the target file name,
      as enc/make_encmake.rb ignores any arguments after the target.

  Modified files:
    trunk/common.mk
Index: common.mk
===================================================================
--- common.mk	(revision 50953)
+++ common.mk	(revision 50954)
@@ -628,7 +628,7 @@ libtrans trans: {$(VPATH)}transdb.h https://github.com/ruby/ruby/blob/trunk/common.mk#L628
 $(ENC_MK): $(srcdir)/enc/make_encmake.rb $(srcdir)/enc/Makefile.in $(srcdir)/enc/depend \
 	$(srcdir)/enc/encinit.c.erb $(srcdir)/lib/mkmf.rb $(RBCONFIG) fake
 	$(ECHO) generating $@
-	$(Q) $(MINIRUBY) $(srcdir)/enc/make_encmake.rb --builtin-encs="$(BUILTIN_ENCOBJS)" --builtin-transes="$(BUILTIN_TRANSOBJS)" --module$(ENCSTATIC) $@ $(ENCS)
+	$(Q) $(MINIRUBY) $(srcdir)/enc/make_encmake.rb --builtin-encs="$(BUILTIN_ENCOBJS)" --builtin-transes="$(BUILTIN_TRANSOBJS)" --module$(ENCSTATIC) $(ENCS) $@
 
 .PRECIOUS: $(MKFILES)
 

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

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