From a12ca2113d7f39b722eef252a052741261dd31e1 Mon Sep 17 00:00:00 2001 From: usa Date: Fri, 31 Oct 2014 08:25:07 +0000 Subject: * 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. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48211 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 7 +++++++ win32/setup.mak | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 56e8f78..de3445a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Fri Oct 31 17:22:19 2014 NAKAMURA Usaku + + * 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 * ext/syslog/lib/syslog/logger.rb (Syslog::Logger::VERSION): Bump diff --git a/win32/setup.mak b/win32/setup.mak index 2e62be1..f64d24d 100644 --- a/win32/setup.mak +++ b/win32/setup.mak @@ -155,7 +155,7 @@ MACHINE = x86 #endif << !if defined($(CPU)) - @$(APPEND) $(CPU) = $(PROCESSOR_LEVEL) + @echo>>$(MAKEFILE) $(CPU) = $(PROCESSOR_LEVEL) !endif @$(APPEND) -- cgit v1.1