diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | lib/MDK/Common/File.pm | 4 |
2 files changed, 3 insertions, 4 deletions
@@ -1,3 +1,6 @@ +- substInFile: + o do not unlink the symlink to recreate it later to the same target + Version 1.2.21 - 7 October 2009, by Thierry Vignaud - substInFile: diff --git a/lib/MDK/Common/File.pm b/lib/MDK/Common/File.pm index cdcfcd9..c06294c 100644 --- a/lib/MDK/Common/File.pm +++ b/lib/MDK/Common/File.pm @@ -272,12 +272,9 @@ sub glob_ { sub substInFile(&@) { my ($f, $file) = @_; - my $linkdest; #- try hard to keep symlinks as they were set if (-l $file) { my $targetfile = readlink $file; - unlink $file; - $linkdest = $file; $file = $targetfile; } if (-s $file) { @@ -299,7 +296,6 @@ sub substInFile(&@) { select $old; eval { output($file, $_) }; } - $linkdest and symlink $file, $linkdest; } |