Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add the svn version to the checkall log. I'm getting lost out there
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sat, 11 Apr 2009 23:28:40 +0000 (23:28 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Sat, 11 Apr 2009 23:28:40 +0000 (23:28 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6239 48e7efb5-ca39-0410-a469-dd3cf9ba447f

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     $_;