ruby-changes:41365
From: nobu <ko1@a...>
Date: Tue, 5 Jan 2016 09:47:57 +0900 (JST)
Subject: [ruby-changes:41365] nobu:r53437 (trunk): enc/Makefile.in: get rid of nmake bug
nobu 2016-01-05 09:48:04 +0900 (Tue, 05 Jan 2016) New Revision: 53437 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=53437 Log: enc/Makefile.in: get rid of nmake bug * enc/Makefile.in (ECHO1): expand NULLCMD by configured value to get rid of a bug of nmake, that it can expand bare single name variable but cannot in substition. Modified files: trunk/enc/Makefile.in Index: enc/Makefile.in =================================================================== --- enc/Makefile.in (revision 53436) +++ enc/Makefile.in (revision 53437) @@ -1,8 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/enc/Makefile.in#L1 V = 0 Q1 = $(V:1=) Q = $(Q1:0=@) -n=$(NULLCMD) -ECHO1 = $(V:1=@$n) +ECHO1 = $(V:1=@@NULLCMD@) ECHO = $(ECHO1:0=@echo) encsrcdir = @srcdir@ -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/