diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-12 05:36:34 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-12 05:36:34 +0000 |
| commit | 6afe623d23ce3bec3a97d32c5156a0f01bcd7fcf (patch) | |
| tree | 87a33f10181e3fc8b4c1d7774b243ae3f08b271c | |
| parent | 2b0912dad2414a16a5eb9846f8806f047c444aab (diff) | |
* win32/Makefile.sub: fixes build failures on win32.
fixed by usa.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@23411 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | version.h | 2 | ||||
| -rw-r--r-- | win32/Makefile.sub | 5 |
3 files changed, 11 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue May 12 14:35:29 2009 Yuki Sonoda (Yugui) <yugui@yugui.jp> + + * win32/Makefile.sub: fixes build failures on win32. + fixed by usa. + Tue May 12 13:43:35 2009 Yuki Sonoda (Yugui) <yugui@yugui.jp> * win32/Makefile.sub: fixes a mistake in merging r22822. @@ -1,6 +1,6 @@ #define RUBY_VERSION "1.9.1" #define RUBY_RELEASE_DATE "2009-05-12" -#define RUBY_PATCHLEVEL 128 +#define RUBY_PATCHLEVEL 129 #define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MINOR 9 diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 1d25ddaa9..a2d9b11ea 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -809,15 +809,20 @@ ext/extinit.obj: ext/extinit.c $(SETUP) $(INSNS): @$(RM) $(PROGRAM) -$(BASERUBY) -Ks $(srcdir)/tool/insns2vm.rb $(INSNS2VMOPT) $@ + if not exist $@ copy $(srcdir:/=\)\$(@F) $@ node_name.inc: -$(BASERUBY) -n $(srcdir)/tool/node_name.rb $? > $@ + if not exist $@ copy $(srcdir:/=\)\$(@F) $@ known_errors.inc: -$(BASERUBY) $(srcdir)/tool/generic_erb.rb -c -o $@ $(srcdir)/template/known_errors.inc.tmpl $(srcdir)/defs/known_errors.def + if not exist $@ copy $(srcdir:/=\)\$(@F) $@ miniprelude.c: -$(BASERUBY) -I$(srcdir) $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb $@ + if not exist $@ copy $(srcdir:/=\)\$(@F) $@ newline.c: -$(BASERUBY) "$(srcdir)/tool/transcode-tblgen.rb" -vo newline.c $(srcdir)/enc/trans/newline.trans + if not exist $@ copy $(srcdir:/=\)\$(@F) $@ |
