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

ruby-changes:20727

From: yugui <ko1@a...>
Date: Sun, 31 Jul 2011 20:41:00 +0900 (JST)
Subject: [ruby-changes:20727] yugui:r32775 (ruby_1_9_3): * common.mk (ECHO1): nmake does not allow parenthesis in make variable

yugui	2011-07-31 20:40:52 +0900 (Sun, 31 Jul 2011)

  New Revision: 32775

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

  Log:
    * common.mk (ECHO1): nmake does not allow parenthesis in make variable
      replacement.

  Modified files:
    branches/ruby_1_9_3/ChangeLog
    branches/ruby_1_9_3/common.mk

Index: ruby_1_9_3/ChangeLog
===================================================================
--- ruby_1_9_3/ChangeLog	(revision 32774)
+++ ruby_1_9_3/ChangeLog	(revision 32775)
@@ -1,3 +1,8 @@
+Sun Jul 31 20:39:12 2011  Yuki Sonoda (Yugui)  <yugui@y...>
+
+	* common.mk (ECHO1): nmake does not allow parenthesis in make variable
+	  replacement.
+
 Sun Jul 31 20:21:36 2011  "Yuki Sonoda (Yugui)"  <yugui@y...>
 
 	* common.mk (ECHO1): ":" in a make variable replacement cause a syntax
Index: ruby_1_9_3/common.mk
===================================================================
--- ruby_1_9_3/common.mk	(revision 32774)
+++ ruby_1_9_3/common.mk	(revision 32775)
@@ -8,7 +8,8 @@
 V = 0
 Q1 = $(V:1=)
 Q = $(Q1:0=@)
-ECHO1 = $(V:1=@$(NULLCMD))
+n=$(NULLCMD)
+ECHO1 = $(V:1=@$n)
 ECHO = $(ECHO1:0=@echo)
 
 RUBYLIB       = -

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

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