diff options
Diffstat (limited to 'ext/-test-/win32/dln')
-rw-r--r-- | ext/-test-/win32/dln/extconf.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/-test-/win32/dln/extconf.rb b/ext/-test-/win32/dln/extconf.rb index 06dbbecff3..f2ea8d55d8 100644 --- a/ext/-test-/win32/dln/extconf.rb +++ b/ext/-test-/win32/dln/extconf.rb @@ -1,7 +1,7 @@ if /mswin|mingw/ =~ RUBY_PLATFORM $objs = ["dlntest.o"] $cleanfiles << "$(topdir)/dlntest.dll" - $cleanfiles.concat(config_string('cleanobjs') {|t| t.gsub(/\$\*/, 'dlntest')}.split) + config_string('cleanobjs') {|t| $cleanfiles.concat(t.gsub(/\$\*/, 'dlntest').split)} create_makefile("-test-/win32/dln") m = File.read("Makefile") |