diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-15 01:00:38 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-15 01:00:38 +0000 |
| commit | 9d9110121cd1b86d422a08d27ff369efa61e7166 (patch) | |
| tree | 1ca8c091749785aa41f320a3732fe5903ba21520 | |
| parent | 1e66c71a5e83a64a7e3e0890df6a751bc294627a (diff) | |
| download | ruby-9d9110121cd1b86d422a08d27ff369efa61e7166.tar.gz ruby-9d9110121cd1b86d422a08d27ff369efa61e7166.tar.xz ruby-9d9110121cd1b86d422a08d27ff369efa61e7166.zip | |
* common.mk (btest-ruby): use RUNRUBY instead of MINIRUBY to load the
shared library. [Bug #849]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@20740 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | common.mk | 2 | ||||
| -rw-r--r-- | version.h | 4 |
3 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Mon Dec 15 10:00:36 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * common.mk (btest-ruby): use RUNRUBY instead of MINIRUBY to load the + shared library. [Bug #849] + Sun Dec 14 22:31:19 2008 Yusuke Endoh <mame@tsg.ne.jp> * bignum.c (bigmul1_karatsuba): remove temporal bignum. @@ -365,7 +365,7 @@ btest: miniruby$(EXEEXT) PHONY $(BOOTSTRAPRUBY) "$(srcdir)/bootstraptest/runner.rb" --ruby="$(MINIRUBY)" $(OPTS) btest-ruby: miniruby$(EXEEXT) $(RBCONFIG) $(PROGRAM) PHONY - @$(MINIRUBY) "$(srcdir)/bootstraptest/runner.rb" --ruby="$(PROGRAM) -I$(srcdir)/lib" -q + @$(RUNRUBY) "$(srcdir)/bootstraptest/runner.rb" --ruby="$(PROGRAM) -I$(srcdir)/lib" -q test-sample: miniruby$(EXEEXT) $(RBCONFIG) $(PROGRAM) PHONY @$(MINIRUBY) $(srcdir)/rubytest.rb @@ -1,5 +1,5 @@ #define RUBY_VERSION "1.9.1" -#define RUBY_RELEASE_DATE "2008-12-14" +#define RUBY_RELEASE_DATE "2008-12-15" #define RUBY_PATCHLEVEL 5000 #define RUBY_VERSION_MAJOR 1 @@ -7,7 +7,7 @@ #define RUBY_VERSION_TEENY 1 #define RUBY_RELEASE_YEAR 2008 #define RUBY_RELEASE_MONTH 12 -#define RUBY_RELEASE_DAY 14 +#define RUBY_RELEASE_DAY 15 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[]; |
