diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-04-17 04:17:05 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-04-17 04:17:05 +0000 |
commit | 68bf309945986fd2d4ad8ee9b266a53bf4f371f0 (patch) | |
tree | 3da7e8983459362a1c62084b641e6eb450edea0d | |
parent | cc433788dec1a0a259cc106125a5c2e14a94c9da (diff) |
* 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
-rw-r--r-- | ext/-test-/win32/dln/extconf.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/ext/-test-/win32/dln/extconf.rb b/ext/-test-/win32/dln/extconf.rb index e7fbd35405..fb3e7cc508 100644 --- a/ext/-test-/win32/dln/extconf.rb +++ b/ext/-test-/win32/dln/extconf.rb @@ -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| |