Skip to content

Commit 1662bee

Browse files
committed
* win32/Makefile.sub: fixes build failures on win32.
fixed by usa. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@23411 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent aa9e93f commit 1662bee

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Tue May 12 14:35:29 2009 Yuki Sonoda (Yugui) <yugui@yugui.jp>
2+
3+
* win32/Makefile.sub: fixes build failures on win32.
4+
fixed by usa.
5+
16
Tue May 12 13:43:35 2009 Yuki Sonoda (Yugui) <yugui@yugui.jp>
27

38
* win32/Makefile.sub: fixes a mistake in merging r22822.

version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#define RUBY_VERSION "1.9.1"
22
#define RUBY_RELEASE_DATE "2009-05-12"
3-
#define RUBY_PATCHLEVEL 128
3+
#define RUBY_PATCHLEVEL 129
44

55
#define RUBY_VERSION_MAJOR 1
66
#define RUBY_VERSION_MINOR 9

win32/Makefile.sub

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -809,15 +809,20 @@ ext/extinit.obj: ext/extinit.c $(SETUP)
809809
$(INSNS):
810810
@$(RM) $(PROGRAM)
811811
-$(BASERUBY) -Ks $(srcdir)/tool/insns2vm.rb $(INSNS2VMOPT) $@
812+
if not exist $@ copy $(srcdir:/=\)\$(@F) $@
812813

813814
node_name.inc:
814815
-$(BASERUBY) -n $(srcdir)/tool/node_name.rb $? > $@
816+
if not exist $@ copy $(srcdir:/=\)\$(@F) $@
815817

816818
known_errors.inc:
817819
-$(BASERUBY) $(srcdir)/tool/generic_erb.rb -c -o $@ $(srcdir)/template/known_errors.inc.tmpl $(srcdir)/defs/known_errors.def
820+
if not exist $@ copy $(srcdir:/=\)\$(@F) $@
818821

819822
miniprelude.c:
820823
-$(BASERUBY) -I$(srcdir) $(srcdir)/tool/compile_prelude.rb $(srcdir)/prelude.rb $@
824+
if not exist $@ copy $(srcdir:/=\)\$(@F) $@
821825

822826
newline.c:
823827
-$(BASERUBY) "$(srcdir)/tool/transcode-tblgen.rb" -vo newline.c $(srcdir)/enc/trans/newline.trans
828+
if not exist $@ copy $(srcdir:/=\)\$(@F) $@

0 commit comments

Comments
 (0)