1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* mkconfig.rb: setup library paths before requiring library.

[ruby-core:03892]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7462 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2004-12-04 15:56:34 +00:00
parent 95a5b4e9a4
commit a54f1be716
2 changed files with 9 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sun Dec 5 00:54:32 2004 WATANABE Hirofumi <eban@ruby-lang.org>
* mkconfig.rb: setup library paths before requiring library.
[ruby-core:03892]
Sat Dec 4 21:29:05 2004 Minero Aoki <aamine@loveruby.net>
* lib/fileutils.rb: (In previous commit) new method chown.

View file

@ -4,7 +4,10 @@
$install_name ||= nil
$so_name ||= nil
require File.dirname($0)+"/lib/fileutils"
srcdir = File.dirname(__FILE__)
$:.replace [srcdir+"/lib", "."]
require "fileutils"
mkconfig = File.basename($0)
rbconfig_rb = ARGV[0] || 'rbconfig.rb'