# File lib/rake.rb, line 518
518:   def safe_ln(*args)
519:     unless LN_SUPPORTED[0]
520:       cp(*args)
521:     else
522:       begin
523:         ln(*args)
524:       rescue Errno::EOPNOTSUPP
525:         LN_SUPPORTED[0] = false
526:         cp(*args)
527:       end
528:     end
529:   end