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

ruby-changes:36130

From: usa <ko1@a...>
Date: Fri, 31 Oct 2014 17:25:19 +0900 (JST)
Subject: [ruby-changes:36130] usa:r48211 (trunk): * win32/setup.mak: $(APPEND) with some arguments insert a space before

usa	2014-10-31 17:25:07 +0900 (Fri, 31 Oct 2014)

  New Revision: 48211

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

  Log:
    * win32/setup.mak: $(APPEND) with some arguments insert a space before
      the arguments, so it causes error if the arguments are expected to be
      a macro definition.  this fix resolve the build error introduced at
      r48210.

  Modified files:
    trunk/ChangeLog
    trunk/win32/setup.mak
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 48210)
+++ ChangeLog	(revision 48211)
@@ -1,3 +1,10 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Fri Oct 31 17:22:19 2014  NAKAMURA Usaku  <usa@r...>
+
+	* win32/setup.mak: $(APPEND) with some arguments insert a space before
+	  the arguments, so it causes error if the arguments are expected to be
+	  a macro definition.  this fix resolve the build error introduced at
+	  r48210.
+
 Fri Oct 31 16:47:35 2014  Akinori MUSHA  <knu@i...>
 
 	* ext/syslog/lib/syslog/logger.rb (Syslog::Logger::VERSION): Bump
Index: win32/setup.mak
===================================================================
--- win32/setup.mak	(revision 48210)
+++ win32/setup.mak	(revision 48211)
@@ -155,7 +155,7 @@ MACHINE = x86 https://github.com/ruby/ruby/blob/trunk/win32/setup.mak#L155
 #endif
 <<
 !if defined($(CPU))
-	@$(APPEND) $(CPU) = $(PROCESSOR_LEVEL)
+	@echo>>$(MAKEFILE) $(CPU) = $(PROCESSOR_LEVEL)
 !endif
 	@$(APPEND)
 

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

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