Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add the svn version to the checkall log. I'm getting lost out there
[simgrid.git] / checkall
index 7f48c2f..eeb67cd 100755 (executable)
--- a/checkall
+++ b/checkall
@@ -18,7 +18,8 @@ if (-e "CMakeLists.txt") { # launched from dart
 open LOG,(">checkall.log") || die "Cannot open log file: $!";
 
 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);
-print LOG "Build started on $hour:$min:$sec $mon/$mday/$year\n\n";
+print LOG "Build started on $hour:$min:$sec $mon/$mday/$year\n";
+print LOG "Current svn version is: ".qx(svnversion)."\n\n";
 open MAKE,("make 2>&1 |") || die "Cannot fork a make: $!";
 while (<MAKE>) {
     print     $_;