ruby-changes:17756
From: usa <ko1@a...>
Date: Fri, 12 Nov 2010 10:00:50 +0900 (JST)
Subject: [ruby-changes:17756] Ruby:r29767 (trunk): * win32/setup.mak: use findstr.exe instead of find.exe, because all
usa 2010-11-12 10:00:39 +0900 (Fri, 12 Nov 2010) New Revision: 29767 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=29767 Log: * win32/setup.mak: use findstr.exe instead of find.exe, because all target build platforms should have findstr.exe, and, find.exe often means another command such as cygwin's. Modified files: trunk/ChangeLog trunk/win32/setup.mak Index: ChangeLog =================================================================== --- ChangeLog (revision 29766) +++ ChangeLog (revision 29767) @@ -1,3 +1,9 @@ +Fri Nov 12 09:58:30 2010 NAKAMURA Usaku <usa@r...> + + * win32/setup.mak: use findstr.exe instead of find.exe, because all + target build platforms should have findstr.exe, and, find.exe often + means another command such as cygwin's. + Fri Nov 12 00:30:19 2010 Nobuyoshi Nakada <nobu@r...> * win32/Makefile.sub (config.h): need PRI_LL_PREFIX. Index: win32/setup.mak =================================================================== --- win32/setup.mak (revision 29766) +++ win32/setup.mak (revision 29767) @@ -164,7 +164,7 @@ -version-: nul @$(APPEND) - @$(CPP) -I$(srcdir) -I$(srcdir)/include <<"Creating $(MAKEFILE)" | find "=" >>$(MAKEFILE) + @$(CPP) -I$(srcdir) -I$(srcdir)/include <<"Creating $(MAKEFILE)" | findstr "=" >>$(MAKEFILE) #define RUBY_REVISION 0 #include "version.h" MAJOR = RUBY_API_VERSION_MAJOR -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/