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

ruby-changes:32546

From: nobu <ko1@a...>
Date: Thu, 16 Jan 2014 14:54:35 +0900 (JST)
Subject: [ruby-changes:32546] nobu:r44625 (trunk): common.mk: fix command error

nobu	2014-01-16 14:54:32 +0900 (Thu, 16 Jan 2014)

  New Revision: 44625

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

  Log:
    common.mk: fix command error
    
    * common.mk (capi): flags cannot be separated by escaped newlines.

  Modified files:
    trunk/common.mk
Index: common.mk
===================================================================
--- common.mk	(revision 44624)
+++ common.mk	(revision 44625)
@@ -198,8 +198,7 @@ capi: $(CAPIOUT)/.timestamp PHONY https://github.com/ruby/ruby/blob/trunk/common.mk#L198
 $(CAPIOUT)/.timestamp: Doxyfile $(PREP)
 	$(Q) $(MAKEDIRS) "$(@D)"
 	$(ECHO) generating capi
-	- \
-	$(Q) $(DOXYGEN) -b
+	-$(Q) $(DOXYGEN) -b
 	$(Q) $(MINIRUBY) -e 'File.open(ARGV[0], "w"){|f| f.puts(Time.now)}' "$@"
 
 Doxyfile: $(srcdir)/template/Doxyfile.tmpl $(PREP) $(srcdir)/tool/generic_erb.rb $(RBCONFIG)

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

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