diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-17 04:11:22 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-17 04:11:22 +0000 |
| commit | 97a1753fddae712895c0851d6b4f9e09471cd81e (patch) | |
| tree | 8259ec427e2fbbd0856dc7d99090a1d003ec44d5 | |
| parent | 0f8130b1f5f47e394ce8c5ba374d74cf0aeda8d8 (diff) | |
| download | ruby-97a1753fddae712895c0851d6b4f9e09471cd81e.tar.gz ruby-97a1753fddae712895c0851d6b4f9e09471cd81e.tar.xz ruby-97a1753fddae712895c0851d6b4f9e09471cd81e.zip | |
* {bcc32,win32,wince}/Makefile.sub (test): should build ruby.exe
before running test. [ruby-core:03756]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7297 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | bcc32/Makefile.sub | 2 | ||||
| -rw-r--r-- | win32/Makefile.sub | 2 | ||||
| -rw-r--r-- | wince/Makefile.sub | 2 |
4 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Wed Nov 17 13:09:40 2004 NAKAMURA Usaku <usa@ruby-lang.org> + + * {bcc32,win32,wince}/Makefile.sub (test): should build ruby.exe + before running test. [ruby-core:03756] + Wed Nov 17 04:33:01 2004 GOTOU Yuuzou <gotoyuzo@notwork.org> * pack.c: all features are backport from 1.9. [ruby-dev:24826] diff --git a/bcc32/Makefile.sub b/bcc32/Makefile.sub index 0c4c6bb12..d04c649fa 100644 --- a/bcc32/Makefile.sub +++ b/bcc32/Makefile.sub @@ -476,7 +476,7 @@ realclean: distclean @if exist parse.c del parse.c @if exist lex.c del lex.c -test: miniruby$(EXEEXT) NUL +test: miniruby$(EXEEXT) rbconfig.rb $(PROGRAM) NUL @$(MINIRUBY) $(srcdir)rubytest.rb rbconfig.rb: miniruby$(EXEEXT) config.status diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 3d37b9ff3..db37b65d0 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -485,7 +485,7 @@ realclean: distclean @if exist parse.c del parse.c @if exist lex.c del lex.c -test: miniruby$(EXEEXT) NUL +test: miniruby$(EXEEXT) rbconfig.rb $(PROGRAM) NUL @miniruby$(EXEEXT) $(srcdir)/rubytest.rb rbconfig.rb: miniruby$(EXEEXT) config.status diff --git a/wince/Makefile.sub b/wince/Makefile.sub index 9d1fd2651..786815620 100644 --- a/wince/Makefile.sub +++ b/wince/Makefile.sub @@ -517,7 +517,7 @@ realclean: distclean @if exist parse.c del parse.c @if exist lex.c del lex.c -test: miniruby$(EXEEXT) +test: miniruby$(EXEEXT) rbconfig.rb $(PROGRAM) NUL @miniruby$(EXEEXT) $(srcdir)/rubytest.rb rbconfig.rb: miniruby$(EXEEXT) config.status |
