diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-08-03 09:50:41 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-08-03 09:50:41 +0000 |
commit | 8884ab5e392549c34d79bcb8b32c13c9166626d4 (patch) | |
tree | 8cb43e1d3e273d64588df7db13cd2aeb7ca99b65 /instruby.rb | |
parent | bb70bf13b22159d39c29e928294f1e9bca7f700e (diff) | |
download | ruby-8884ab5e392549c34d79bcb8b32c13c9166626d4.tar.gz ruby-8884ab5e392549c34d79bcb8b32c13c9166626d4.tar.xz ruby-8884ab5e392549c34d79bcb8b32c13c9166626d4.zip |
matz - nakada win32 patch
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@872 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'instruby.rb')
-rw-r--r-- | instruby.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/instruby.rb b/instruby.rb index 0d06ad93c..e966b5bd9 100644 --- a/instruby.rb +++ b/instruby.rb @@ -86,8 +86,8 @@ end if RUBY_PLATFORM =~ /mswin32|mingw/ File.makedirs archlibdir + "/win32", true File.install "win32/win32.h", archlibdir + "/win32", 0644, true - if File.exist? wdir+'/rubymw.lib' - File.install wdir+'/rubymw.lib', archlibdir, 0644, true + if File.exist? wdir+'/'+CONFIG["LIBRUBY"] + File.install wdir+'/'+CONFIG["LIBRUBY"], archlibdir, 0644, true end end File.install wdir+'/'+CONFIG['LIBRUBY_A'], archlibdir, 0644, true |