ruby-changes:17769
From: nobu <ko1@a...>
Date: Sun, 14 Nov 2010 08:48:22 +0900 (JST)
Subject: [ruby-changes:17769] Ruby:r29780 (trunk): * win32/setup.mak (-basic-vars-, -runtime-): suppress trailing
nobu 2010-11-14 08:48:12 +0900 (Sun, 14 Nov 2010) New Revision: 29780 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29780 Log: * win32/setup.mak (-basic-vars-, -runtime-): suppress trailing space and compiler command line. Modified files: trunk/ChangeLog trunk/win32/setup.mak Index: ChangeLog =================================================================== --- ChangeLog (revision 29779) +++ ChangeLog (revision 29780) @@ -1,3 +1,8 @@ +Sun Nov 14 08:48:06 2010 Nobuyoshi Nakada <nobu@r...> + + * win32/setup.mak (-basic-vars-, -runtime-): suppress trailing + space and compiler command line. + Sun Nov 14 04:22:32 2010 Alexander Zavorine <alexandre.zavorine@n...> * symbian/setup (config.h): Added HAVE_LABS and HAVE_LLABS to config.h. Index: win32/setup.mak =================================================================== --- win32/setup.mak (revision 29779) +++ win32/setup.mak (revision 29780) @@ -60,7 +60,7 @@ !endif << !if !defined(BASERUBY) - @for %I in (ruby.exe) do @echo BASERUBY = %~s$$PATH:I >> $(MAKEFILE) + @for %I in (ruby.exe) do @echo BASERUBY = %~s$$PATH:I>> $(MAKEFILE) !endif -system-vars-: -runtime- -unicows- @@ -76,7 +76,7 @@ @echo TARGET_OS = mswin64 >>$(MAKEFILE) -runtime-: nul - $(CC) -MD <<rtname.c user32.lib -link > nul + @$(CC) -MD <<rtname.c user32.lib -link > nul #include <windows.h> #include <memory.h> #include <string.h> -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/