1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/runner.rb (CROSS_COMPILING): need to require rbconfig.rb before

using CROSS_COMPILNG.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7339 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2004-11-20 13:58:20 +00:00
parent 919992f5b8
commit a0b500ac08
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sat Nov 20 22:55:09 2004 WATANABE Hirofumi <eban@ruby-lang.org>
* test/runner.rb (CROSS_COMPILING): need to require rbconfig.rb before
using CROSS_COMPILNG.
Sat Nov 20 20:42:42 2004 Minero Aoki <aamine@loveruby.net>
* ext/ripper/depend: fix ripper.o dependency.

View file

@ -1,4 +1,5 @@
exit if defined?(CROSS_COMPILING)
require 'rbconfig'
exit if CROSS_COMPILING
require 'test/unit'
rcsid = %w$Id$