summaryrefslogtreecommitdiff
path: root/instruby.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-04-07 09:47:28 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-04-07 09:47:28 +0000
commit63b3f1b482c823bb599eb02f9c6716095a5705ec (patch)
tree76b8426c85535e857d21d8c2023d1778a35fb2b8 /instruby.rb
parentd5e6f30ff7865ca305a12f76fed3c58774d53aa8 (diff)
1.1b9_08
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@157 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'instruby.rb')
-rw-r--r--instruby.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/instruby.rb b/instruby.rb
index 1fb1fe30bd..9f55628655 100644
--- a/instruby.rb
+++ b/instruby.rb
@@ -20,7 +20,9 @@ mandir = CONFIG["mandir"] + "/man1"
File.install "ruby#{binsuffix}",
"#{bindir}/#{ruby_install_name}#{binsuffix}", 0755, TRUE
-File.install "rubygw32.dll", "#{bindir}/rubygw32.dll", 0755, TRUE
+for dll in Dir['*.dll']
+ File.install dll, "#{bindir}/#{dll}", 0755, TRUE
+end
File.makedirs libdir, TRUE
Dir.chdir "ext"
system "../miniruby#{binsuffix} extmk.rb install"