mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 14:35:54 +00:00
solaris won't clobber an existing symlink with ln -sf apparently
llvm-svn: 25849
This commit is contained in:
parent
7a83bb4285
commit
b79e962b6b
@ -847,7 +847,10 @@ my $TestFinishTime = gmtime() . " GMT<br>" . localtime() . " (local)";
|
||||
my $TestPlatform = `uname -a`;
|
||||
eval "\$Output = <<ENDOFFILE;$TemplateContents\nENDOFFILE\n";
|
||||
WriteFile "$DATE.html", $Output;
|
||||
system ( "ln -sf $DATE.html index.html" );
|
||||
|
||||
# Remove the symlink before creating it for systems that don't have "ln -sf".
|
||||
system ("rm index.html");
|
||||
system ("ln -s $DATE.html index.html");
|
||||
|
||||
# Change the index.html symlink...
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user