summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-04 11:16:11 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-12-04 11:16:11 +0000
commit86661b5c60b8da6e5641c9c772b57857a1f988f4 (patch)
treed9960a8a1ec18f75eb9b0bf60ea3047a2d81edae /ext
parent3a88b4d000db79d9562dd91dc9c9af64cddc3bcc (diff)
Remove unnecessary directory listing
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66194 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/bigdecimal/extconf.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/bigdecimal/extconf.rb b/ext/bigdecimal/extconf.rb
index 602c7d6162..6f732648f9 100644
--- a/ext/bigdecimal/extconf.rb
+++ b/ext/bigdecimal/extconf.rb
@@ -60,10 +60,4 @@ end
create_makefile('bigdecimal') {|mf|
mf << "\nall:\n\nextconf.h: $(srcdir)/#{gemspec_name}\n"
- case RUBY_PLATFORM
- when /mswin/
- mf << "\nall:\n\tdir $(TARGET_SO_DIR)"
- else
- mf << "\nall:\n\tls $(TARGET_SO_DIR)"
- end
}