summaryrefslogtreecommitdiff
path: root/instruby.rb
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-06 17:03:35 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-02-06 17:03:35 +0000
commit370647ac58e0997839a030eb69b5354a5bd7cf70 (patch)
treedf3d0b8577940c651cb007d40645f396638a13e7 /instruby.rb
parent68056ad3ad25e61d4fbacbf9d4d93847cd79ae64 (diff)
* instruby.rb, rubytest.rb (srcdir): no longer embed srcdir into
rbconfig.rb. (backported from CVS HEAD) * ext/socket/extconf.rb (sockaddr_storage): winsock2.h have the definition of struct sockaddr_storage, but socket.c doesn't include it because this version of ruby still has binary level compatibility with winsock1. * lib/mkmf.rb (create_makefile): should support header files in depend file. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@7907 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'instruby.rb')
-rw-r--r--instruby.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/instruby.rb b/instruby.rb
index a9d66c7670..f56bb2e7ca 100644
--- a/instruby.rb
+++ b/instruby.rb
@@ -3,7 +3,8 @@
load "./rbconfig.rb"
include Config
-$:.unshift File.join(CONFIG["srcdir"], "lib")
+srcdir = File.dirname(__FILE__)
+$:.unshift File.join(srcdir, "lib")
require 'fileutils'
require 'shellwords'
require 'getopts'
@@ -121,7 +122,7 @@ if dll == lib and dll != arc
end
end
-Dir.chdir CONFIG["srcdir"]
+Dir.chdir srcdir
ruby_shebang = File.join(CONFIG["bindir"], ruby_install_name)
if File::ALT_SEPARATOR