ruby-changes:18303
From: yugui <ko1@a...>
Date: Thu, 23 Dec 2010 23:31:03 +0900 (JST)
Subject: [ruby-changes:18303] Ruby:r30326 (ruby_1_9_2): * common.mk, win32/Makefile.sub: fixes dependencies.
yugui 2010-12-23 23:30:50 +0900 (Thu, 23 Dec 2010) New Revision: 30326 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=30326 Log: * common.mk, win32/Makefile.sub: fixes dependencies. patch by nobu. Modified files: branches/ruby_1_9_2/ChangeLog branches/ruby_1_9_2/common.mk branches/ruby_1_9_2/version.h branches/ruby_1_9_2/win32/Makefile.sub Index: ruby_1_9_2/ChangeLog =================================================================== --- ruby_1_9_2/ChangeLog (revision 30325) +++ ruby_1_9_2/ChangeLog (revision 30326) @@ -1,3 +1,8 @@ +Thu Dec 23 23:29:04 2010 Yuki Sonoda (Yugui) <yugui@y...> + + * common.mk, win32/Makefile.sub: fixes dependencies. + patch by nobu. + Thu Dec 23 22:29:08 2010 Yuki Sonoda (Yugui) <yugui@y...> * io.c (io_fillbuf): fixes a mistake on merging r30280, at r30321. @@ -390,11 +395,6 @@ * lib/csv.rb: Fixing documentation typos. [ruby-core:32712] -Thu Oct 7 18:10:35 2010 Nobuyoshi Nakada <nobu@r...> - - * cygwin/GNUmakefile.in, win32/Makefile.sub (RCFILES): depend on - real config.rb file. [ruby-core:32709] - Wed Oct 6 11:52:12 2010 Nobuyoshi Nakada <nobu@r...> * io.c (fptr_finalize): write_mutex might have been destroyed Index: ruby_1_9_2/common.mk =================================================================== --- ruby_1_9_2/common.mk (revision 30325) +++ ruby_1_9_2/common.mk (revision 30326) @@ -447,7 +447,7 @@ $(MAKEDIRS) "$(EXTCONFDIR)" $(RUNRUBY) -C "$(EXTCONFDIR)" $(EXTCONF) $(EXTCONFARGS) -$(RBCONFIG): $(srcdir)/tool/mkconfig.rb config.status $(PREP) +$(RBCONFIG): $(srcdir)/tool/mkconfig.rb config.status $(srcdir)/version.h $(PREP) @$(MINIRUBY) $(srcdir)/tool/mkconfig.rb -timestamp=$@ \ -install_name=$(RUBY_INSTALL_NAME) \ -so_name=$(RUBY_SO_NAME) rbconfig.rb Index: ruby_1_9_2/win32/Makefile.sub =================================================================== --- ruby_1_9_2/win32/Makefile.sub (revision 30325) +++ ruby_1_9_2/win32/Makefile.sub (revision 30326) @@ -846,7 +846,7 @@ distclean-ext realclean-ext:: @-rmdir ext -$(RUBY_INSTALL_NAME).rc $(RUBYW_INSTALL_NAME).rc $(RUBY_SO_NAME).rc: $(RBCONFIG) config.rb $(srcdir)/revision.h $(srcdir)/win32/resource.rb +$(RCFILES): $(RBCONFIG) $(srcdir)/revision.h $(srcdir)/win32/resource.rb @$(MINIRUBY) $(srcdir)/win32/resource.rb \ -ruby_name=$(RUBY_INSTALL_NAME) \ -rubyw_name=$(RUBYW_INSTALL_NAME) \ Index: ruby_1_9_2/version.h =================================================================== --- ruby_1_9_2/version.h (revision 30325) +++ ruby_1_9_2/version.h (revision 30326) @@ -1,5 +1,5 @@ #define RUBY_VERSION "1.9.2" -#define RUBY_PATCHLEVEL 131 +#define RUBY_PATCHLEVEL 132 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 9 #define RUBY_VERSION_TEENY 1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/