Skip to content

Commit

Permalink
merge revision(s) 27400:
Browse files Browse the repository at this point in the history
	* lib/fileutils.rb (FileUtils::cp_r): dup needed here; options are
	  destroyed otherwise.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@28211 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
shyouhei committed Jun 8, 2010
1 parent 6e37bdc commit 9252cb7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
Tue Jun 8 15:33:30 2010 URABE Shyouhei <shyouhei@ruby-lang.org>

* lib/fileutils.rb (FileUtils::cp_r): dup needed here; options are
destroyed otherwise.

Tue Jun 8 15:27:00 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>

* eval.c (search_required): expand home relative path first.
Expand Down
1 change: 1 addition & 0 deletions lib/fileutils.rb
Expand Up @@ -418,6 +418,7 @@ def cp_r(src, dest, options = {})
fu_check_options options, OPT_TABLE['cp_r']
fu_output_message "cp -r#{options[:preserve] ? 'p' : ''}#{options[:remove_destination] ? ' --remove-destination' : ''} #{[src,dest].flatten.join ' '}" if options[:verbose]
return if options[:noop]
options = options.dup
options[:dereference_root] = true unless options.key?(:dereference_root)
fu_each_src_dest(src, dest) do |s, d|
copy_entry s, d, options[:preserve], options[:dereference_root], options[:remove_destination]
Expand Down
2 changes: 1 addition & 1 deletion version.h
Expand Up @@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2010-06-08"
#define RUBY_VERSION_CODE 187
#define RUBY_RELEASE_CODE 20100608
#define RUBY_PATCHLEVEL 275
#define RUBY_PATCHLEVEL 276

#define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8
Expand Down

0 comments on commit 9252cb7

Please sign in to comment.