diff options
-rw-r--r-- | lib/ExtUtils/Command.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ExtUtils/Command.pm b/lib/ExtUtils/Command.pm index 6593ab3a35..829de168fa 100644 --- a/lib/ExtUtils/Command.pm +++ b/lib/ExtUtils/Command.pm @@ -78,7 +78,7 @@ Sets modified time of dst to that of src sub eqtime { my ($src,$dst) = @ARGV; - open(F,">$dst"); + open(F,">>$dst"); close(F); utime((stat($src))[8,9],$dst); } |