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

* ext/-test-/win32/dln/extconf.rb: remove unnecessary local variable.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35356 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-04-17 04:17:05 +00:00
parent cc433788de
commit 68bf309945

View file

@ -1,8 +1,7 @@
if /mswin|mingw/ =~ RUBY_PLATFORM
$objs = ["dlntest.o"]
target_prefix = "-test-/win32/"
create_makefile(target_prefix+"dln")
create_makefile("-test-/win32/dln")
m = File.read("Makefile")
m.sub!(/^OBJS =.*/) {$&+" dlntest.#{$LIBEXT}"}
open("Makefile", "wb") do |mf|