summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rwxr-xr-xrunruby.rb2
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9186f10a8d..111d01625f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sun Sep 24 22:28:20 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * runruby.rb: extension library scripts moved into common directory.
+
Sun Sep 24 14:59:50 2006 Tanaka Akira <akr@fsij.org>
* node.h (struct thread): ia64 support is broken by sandbox patch.
@@ -8,7 +12,7 @@ Sun Sep 24 12:11:16 2006 Tadayoshi Funaba <tadf@dotrb.org>
Sat Sep 23 23:24:57 2006 why the lucky stiff <why@ruby-lang.org>
- * 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 e749441553..cc04895c33 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)