Make the latest build-status file accessible in log/latest to make --resume work

correctly.

BUG:219386

svn path=/trunk/KDE/kdesdk/scripts/kdesvn-build; revision=1072401
wilder
Michael Pyne 16 years ago
parent ac7462948d
commit b1e0f7c33b
  1. 7
      kdesvn-build

@ -5720,6 +5720,13 @@ EOF
}
close STATUS_FILE;
# Update the symlink in latest to point to this file.
my $logdir = get_subdir_path('global', 'log-dir');
if (-l "$logdir/latest/build-status") {
safe_unlink("$logdir/latest/build-status");
}
symlink($outfile, "$logdir/latest/build-status");
}
info "<<< Build Done >>>";

Loading…
Cancel
Save