summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/MDK/Common/File.pm4
1 files changed, 0 insertions, 4 deletions
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;
}