diff options
author | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-12 16:06:35 +0000 |
---|---|---|
committer | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-01-12 16:06:35 +0000 |
commit | a955a3bc292442aa392d7fb22a6b9afc16ed3755 (patch) | |
tree | 7a60770ac3505c72761ffc9224fdde226f819fec /lib/rdoc/rdoc.rb | |
parent | ce7c1b42f90a7b0d215a6f44405dbb6f2da2d08c (diff) | |
download | ruby-a955a3bc292442aa392d7fb22a6b9afc16ed3755.tar.gz ruby-a955a3bc292442aa392d7fb22a6b9afc16ed3755.tar.xz ruby-a955a3bc292442aa392d7fb22a6b9afc16ed3755.zip |
Try to use DESTDIR when installing
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5448 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/rdoc.rb')
-rw-r--r-- | lib/rdoc/rdoc.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/rdoc/rdoc.rb b/lib/rdoc/rdoc.rb index ddcf217c4..215826c4f 100644 --- a/lib/rdoc/rdoc.rb +++ b/lib/rdoc/rdoc.rb @@ -159,6 +159,7 @@ module RDoc when "file" file_list << rel_file_name when "directory" + next if rel_file_name == "CVS" || rel_file_name == ".svn" next if options.exclude && options.exclude =~ rel_file_name dot_doc = File.join(rel_file_name, DOT_DOC_FILENAME) if File.file?(dot_doc) |