diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-16 20:10:52 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-16 20:10:52 +0000 |
commit | 0b01850bdc36f6d24a4fdc43ae2051e1fb3f86be (patch) | |
tree | 37cf046193cbc58c00d52538c0e5b2f2fb5d8983 /runruby.rb | |
parent | 84cc67f98b7f26331de373d4b5b639babd9cac11 (diff) |
* runruby.rb: fix incomplete backport r12339.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@13461 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'runruby.rb')
-rwxr-xr-x | runruby.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runruby.rb b/runruby.rb index cbc5e57582..f442d90a9c 100755 --- a/runruby.rb +++ b/runruby.rb @@ -32,11 +32,12 @@ unless File.exist?(ruby) abort "#{ruby} is not found.\nTry `make' first, then `make test', please.\n" end -libs = [abs_archdir, File.expand_path("lib", srcdir)] +libs = [abs_archdir] if extout abs_extout = File.expand_path(extout) libs << File.expand_path("common", abs_extout) << File.expand_path(RUBY_PLATFORM, abs_extout) end +libs << File.expand_path("lib", srcdir) config["bindir"] = abs_archdir ENV["RUBY"] = File.expand_path(ruby) ENV["PATH"] = [abs_archdir, ENV["PATH"]].compact.join(File::PATH_SEPARATOR) |