diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-24 13:28:53 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-09-24 13:28:53 +0000 |
commit | 1342df4dfceb29fee4b54a208f38ce4ce73202d0 (patch) | |
tree | 9f293d6d1c4d8bf7f403478cf34c1c18af48e907 | |
parent | 200ac1c09cd0aae69088bb91fe8a0d8e170dbe24 (diff) | |
download | ruby-1342df4dfceb29fee4b54a208f38ce4ce73202d0.tar.gz ruby-1342df4dfceb29fee4b54a208f38ce4ce73202d0.tar.xz ruby-1342df4dfceb29fee4b54a208f38ce4ce73202d0.zip |
* runruby.rb: extension library scripts moved into common directory.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11007 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | runruby.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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 12:10:04 2006 Tadayoshi Funaba <tadf@dotrb.org> * lib/date.rb, lib/date/format.rb: updated based on date2 3.9.3. diff --git a/runruby.rb b/runruby.rb index 4d7f96afa..8dbe8f714 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) |