# File lib/rake.rb, line 928
928:   def safe_ln(*args)
929:     unless LN_SUPPORTED[0]
930:       cp(*args)
931:     else
932:       begin
933:         ln(*args)
934:       rescue StandardError, NotImplementedError => ex
935:         LN_SUPPORTED[0] = false
936:         cp(*args)
937:       end
938:     end
939:   end