Windows9x doesn't support link(), despite what Config.pm
Gurusamy Sarathy [Mon, 9 Oct 2000 18:54:28 +0000 (18:54 +0000)]
might think

p4raw-id: //depot/perl@7175

lib/ExtUtils/Manifest.pm

index 8bb3fc8..28b7053 100644 (file)
@@ -238,7 +238,7 @@ sub cp {
 
 sub ln {
     my ($srcFile, $dstFile) = @_;
-    return &cp if $Is_VMS;
+    return &cp if $Is_VMS or ($^O eq 'MSWin32' and Win32::IsWin95());
     link($srcFile, $dstFile);
     local($_) = $dstFile; # chmod a+r,go-w+X (except "X" only applies to u=x)
     my $mode= 0444 | (stat)[2] & 0700;