perl 5.003_07: installperl
Ilya Zakharevich [Thu, 10 Oct 1996 02:32:22 +0000 (22:32 -0400)]
Date: Wed, 9 Oct 1996 22:32:22 -0400 (EDT)
From: Ilya Zakharevich <ilya@math.ohio-state.edu>

Restore timestamps under OS/2 (needed for binary install).

installperl

index 183c3ed..8f8f7e7 100755 (executable)
@@ -395,7 +395,7 @@ sub cp_if_diff {
         }
        cmd("cp $from $to");
        # Restore timestamps if it's a .a library.
-       if ($to =~ /\.a$/) {
+       if ($to =~ /\.a$/ or $^O eq 'os2') {    # For binary install
            ($atime, $mtime) = (stat $from)[8,9];
            utime $atime, $mtime, $to;
        }