From 8671cefc2e5bc6a00a82e0e1dd148e6f23aacdf8 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 24 Sep 2006 13:28:53 +0000 Subject: * runruby.rb: extension library scripts moved into common directory. git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@11007 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 +++++- runruby.rb | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9186f10a8..111d01625 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Sep 24 22:28:20 2006 Nobuyoshi Nakada + + * runruby.rb: extension library scripts moved into common directory. + Sun Sep 24 14:59:50 2006 Tanaka Akira * node.h (struct thread): ia64 support is broken by sandbox patch. @@ -8,7 +12,7 @@ Sun Sep 24 12:11:16 2006 Tadayoshi Funaba Sat Sep 23 23:24:57 2006 why the lucky stiff - * eval.c (rb_thread_save_context, rb_thread_restore_context): + * eval.c (rb_thread_save_context, rb_thread_restore_context): sandbox hook to save and restore sandbox state. * eval.c (thread_no_ensure): added THREAD_NO_ENSURE thread flag. diff --git a/runruby.rb b/runruby.rb index e74944155..cc04895c3 100755 --- a/runruby.rb +++ b/runruby.rb @@ -35,7 +35,7 @@ end libs = [abs_archdir, File.expand_path("lib", srcdir)] if extout abs_extout = File.expand_path(extout) - libs << abs_extout << File.expand_path(RUBY_PLATFORM, abs_extout) + libs << File.expand_path("common", abs_extout) << File.expand_path(RUBY_PLATFORM, abs_extout) end config["bindir"] = abs_archdir ENV["RUBY"] = File.expand_path(ruby) -- cgit