* spec/default.mspec: expand relative path for ruby_exe which uses

them with Dir.chdir; it breaks relative paths, for example
  core/kernel/exec_spec.rb.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35349 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2012-04-16 09:23:50 +00:00
Родитель f2979f3101
Коммит e0e479fbc5
2 изменённых файлов: 10 добавлений и 4 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Mon Apr 16 18:22:14 2012 NARUSE, Yui <naruse@ruby-lang.org>
* spec/default.mspec: expand relative path for ruby_exe which uses
them with Dir.chdir; it breaks relative paths, for example
core/kernel/exec_spec.rb.
Mon Apr 16 16:22:40 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
* win32/win32.c (gmtime_r, localtime_r): POSIX compliant reentrant

Просмотреть файл

@ -13,9 +13,9 @@ class MSpecScript
set :target, File.join(builddir, "miniruby#{config['exeext']}")
set :prefix, File.expand_path('rubyspec', File.dirname(__FILE__))
set :flags, %W[
-I#{srcdir}/lib
-I#{srcdir}/#{config['EXTOUT']}/common
-I#{srcdir}/-
#{srcdir}/tool/runruby.rb --extout=#{config['EXTOUT']}
-I#{File.expand_path srcdir}/lib
-I#{File.expand_path srcdir}/#{config['EXTOUT']}/common
-I#{File.expand_path srcdir}/-
#{File.expand_path srcdir}/tool/runruby.rb --archdir=#{Dir.pwd} --extout=#{config['EXTOUT']}
]
end