# File lib/rake.rb, line 1015
1015:   def safe_ln(*args)
1016:     unless LN_SUPPORTED[0]
1017:       cp(*args)
1018:     else
1019:       begin
1020:         ln(*args)
1021:       rescue StandardError, NotImplementedError => ex
1022:         LN_SUPPORTED[0] = false
1023:         cp(*args)
1024:       end
1025:     end
1026:   end