diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-03-17 15:59:40 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-03-17 15:59:40 +0000 |
commit | 508d65a542a2fcdd7b591b5f12a89bd3d48249a6 () | |
tree | c3ade5d2545202acaebecfeb7622a1f5b0b16bb1 /ext | |
parent | 3ae0dbccd2b56c0c0d0938a150344423265d4fa2 (diff) |
* ext/win32ole/extconf.rb (create_docfile): removed. should not
modify source directory unnecessarily, platform dependent documentation should be dealt with by rdoc. [ruby-core:35495] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31121 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ext/.document | 2 | ||||
-rw-r--r-- | ext/win32ole/extconf.rb | 13 |
2 files changed, 1 insertions, 14 deletions
@@ -59,5 +59,5 @@ ripper/lib socket stringio/stringio.c strscan/strscan.c -win32ole zlib/zlib.c @@ -12,16 +12,6 @@ end dir_config("win32", inc, lib) -SRCFILES=<<SRC -win32ole.c -SRC - -def create_docfile(src) - open(File.expand_path($srcdir) + "/.document", "w") {|ofs| - ofs.print src - } -end - def create_win32ole_makefile if have_library("ole32") and have_library("oleaut32") and @@ -34,9 +24,6 @@ def create_win32ole_makefile have_type("IMultiLanguage", "mlang.h") end create_makefile("win32ole") - create_docfile(SRCFILES) - else - create_docfile("") end end |